Skip to content

Instantly share code, notes, and snippets.

@eduardo-matos
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save eduardo-matos/c4bea10a0a306b4cc766 to your computer and use it in GitHub Desktop.

Select an option

Save eduardo-matos/c4bea10a0a306b4cc766 to your computer and use it in GitHub Desktop.
Teste automático em ambiente Windows e Linux
# Teste em ambiente Windows
cls
python manage.py test %* --settings=app.settings.test
rd /S /q %~dp0\media_tests
# Teste em ambiente Unix
clear
python manage.py test $* --settings=app.settings.test
rm -rf $(dirname $0)/media_test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment