Remove coverage per default from testing

We have no pretty way of showing this right now
meaning it's pretty much just noise.
This commit is contained in:
Anders Ingemann 2016-03-04 01:03:02 +01:00
parent 77307e3bbf
commit e80233bc44

View file

@ -13,13 +13,13 @@ commands = flake8 bootstrapvz/ tests/ --exclude=minify_json.py {posargs}
deps = deps =
nose nose
nose-cov nose-cov
commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/unit} commands = nosetests --verbose {posargs:tests/unit}
[testenv:integration] [testenv:integration]
deps = deps =
nose nose
nose-cov nose-cov
commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/integration} commands = nosetests --verbose {posargs:tests/integration}
[testenv:system] [testenv:system]
deps = deps =
@ -28,7 +28,7 @@ deps =
nose-htmloutput nose-htmloutput
Pyro4 >= 4.30 Pyro4 >= 4.30
pyvbox >= 0.2.0 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] [testenv:docs]
changedir = docs changedir = docs