Last active
August 29, 2015 14:05
-
-
Save eduardo-matos/c4bea10a0a306b4cc766 to your computer and use it in GitHub Desktop.
Teste automático em ambiente Windows e Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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