From 2c851d42fd8b3f5f8dbe1162af315c0a984cd660 Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Sat, 3 Sep 2016 17:07:13 +1000 Subject: [PATCH] test: fix coverage tests * ignore migrations * install dev requirements, as the dev settings are used Signed-off-by: Daniel Axtens Reviewed-by: Stephen Finucane --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index c2edd975..aa214a05 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 -- 2.47.3