[split] Move django plugin to oh-my-fish/plugin-django

https://github.com/oh-my-fish/plugin-django
This commit is contained in:
Justin Hileman 2015-05-31 08:30:48 -07:00
parent 6683f68f08
commit d3b2629a88

View File

@ -1,12 +0,0 @@
# 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