From e80233bc446b29d8364d37b936062a42c9193b00 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Fri, 4 Mar 2016 01:03:02 +0100 Subject: [PATCH] Remove coverage per default from testing We have no pretty way of showing this right now meaning it's pretty much just noise. --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 9eaeb5d..8a0b7cd 100644 --- a/tox.ini +++ b/tox.ini @@ -13,13 +13,13 @@ commands = flake8 bootstrapvz/ tests/ --exclude=minify_json.py {posargs} deps = nose nose-cov -commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/unit} +commands = nosetests --verbose {posargs:tests/unit} [testenv:integration] deps = nose nose-cov -commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/integration} +commands = nosetests --verbose {posargs:tests/integration} [testenv:system] deps = @@ -28,7 +28,7 @@ deps = nose-htmloutput Pyro4 >= 4.30 pyvbox >= 0.2.0 -commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --with-html --html-file=system.html --verbose {posargs:tests/system} +commands = nosetests --with-html --html-file=system.html --verbose {posargs:tests/system} [testenv:docs] changedir = docs