From 69a4d9e44864e996c02a097669d931f14a43d511 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 3 Dec 2015 22:05:01 +0000 Subject: [PATCH] tox: Fix bug in 'coverage' target The '--noinput' argument for './manage.py test' was in the wrong place. Signed-off-by: Stephen Finucane --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3