diff mbox

tox: Fix bug in 'coverage' target

Message ID 1449180371-27526-1-git-send-email-stephen.finucane@intel.com
State Accepted
Headers show

Commit Message

Stephen Finucane Dec. 3, 2015, 10:06 p.m. UTC
The '--noinput' argument for './manage.py test' was in the wrong place.

Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
---
 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stephen Finucane Dec. 3, 2015, 10:08 p.m. UTC | #1
O 03 Dec 22:06, Stephen Finucane wrote:
> The '--noinput' argument for './manage.py test' was in the wrong place.
> 
> Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>

Clear bugfix. Merged.
diff mbox

Patch

diff --git a/tox.ini b/tox.ini
index 70b09a5..7ab9983 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