1
Fork 0
theorangeone.net-legacy/scripts/runtests

15 lines
333 B
Text
Raw Normal View History

2016-11-22 21:50:21 +00:00
#!/usr/bin/env bash
set -e
export PATH=env/bin:${PATH}
export DEBUG=true
export IN_TEST=true
export SECRET_KEY='secrit'
flake8 project --ignore=E128,E501 --exclude=migrations,settings,wsgi.py
coverage run --source=project --omit='*/wsgi.py,*/settings.py,*/migrations/*.py,*__init__.py' manage.py test $@
coverage report
npm test