oh-my-fish/plugins/django/djtest.fish
Bruno Pinto 00236e5af3 tidying
2013-11-20 07:53:39 -02:00

13 lines
299 B
Fish

# time, cleanup pyc and running test, settings as first argument
# e.g. djtest settings_dev
function djtest
set VERBOSE --verbosity=1
find . -name "*.pyc" -delete
if set -q argv
time python manage.py test $VERBOSE --settings=$argv
else
time python manage.py test $VERBOSE
end
end