From: Stephen Finucane Date: Thu, 3 Dec 2015 22:05:01 +0000 (+0000) Subject: tox: Fix bug in 'coverage' target X-Git-Tag: v1.1.0~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69a4d9e44864e996c02a097669d931f14a43d511;p=thirdparty%2Fpatchwork.git tox: Fix bug in 'coverage' target The '--noinput' argument for './manage.py test' was in the wrong place. Signed-off-by: Stephen Finucane --- diff --git a/tox.ini b/tox.ini index 70b09a5f..7ab9983b 100644 --- a/tox.ini +++ b/tox.ini @@ -47,5 +47,5 @@ setenv = commands = coverage erase coverage run --omit=*tox*,patchwork/tests/*.py,manage.py --branch \ - {toxinidir}/manage.py --noinput test patchwork + {toxinidir}/manage.py test --noinput patchwork coverage report -m