summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDaniel Axtens <dja@axtens.net>2016-09-03 17:07:13 +1000
committerStephen Finucane <stephenfinucane@hotmail.com>2016-09-03 23:25:16 +0100
commit2c851d42fd8b3f5f8dbe1162af315c0a984cd660 (patch)
tree94af34e867543e7c4b50005054f75b7eadc410b9 /tox.ini
parentdf6dada6bed15216950fb3e8ccf2c1f30c688038 (diff)
downloadpatchwork-2c851d42fd8b3f5f8dbe1162af315c0a984cd660.tar
patchwork-2c851d42fd8b3f5f8dbe1162af315c0a984cd660.tar.gz
test: fix coverage tests
* ignore migrations * install dev requirements, as the dev settings are used Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Stephen Finucane <stephenfinucane@hotmail.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index c2edd97..aa214a0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -44,11 +44,11 @@ commands = {posargs}
basepython = python2.7
deps =
coverage
- -r{toxinidir}/requirements-prod.txt
+ -r{toxinidir}/requirements-dev.txt
setenv =
DJANGO_SETTINGS_MODULE = patchwork.settings.dev
commands =
coverage erase
- coverage run --omit=*tox*,patchwork/tests/*.py,manage.py --branch \
- {toxinidir}/manage.py test --noinput patchwork
+ coverage run --omit=*tox*,patchwork/tests/*.py,manage.py,patchwork/migrations/*.py \
+ --branch {toxinidir}/manage.py test --noinput patchwork
coverage report -m