summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 22f21a6a3..e0f99e7f6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist =
py26,py27,py32,py33,py34,pypy,pypy3,
- {py2,py3}-docs
+ {py2,py3}-docs,
{py2,py3}-cover,coverage
[testenv]
@@ -25,7 +25,7 @@ commands =
[testenv:py2-cover]
commands =
pip install pyramid[testing]
- coverage run --source=pyramid {envbindir}/nosetests --with-xunit --xunit-file=nosetests-py2.xml {posargs:}
+ coverage run --source=pyramid {envbindir}/nosetests
coverage xml -o coverage-py2.xml
setenv =
COVERAGE_FILE=.coverage.py2
@@ -33,7 +33,7 @@ setenv =
[testenv:py3-cover]
commands =
pip install pyramid[testing]
- coverage run --source=pyramid {envbindir}/nosetests --with-xunit --xunit-file=nosetests-py3.xml {posargs:}
+ coverage run --source=pyramid {envbindir}/nosetests
coverage xml -o coverage-py3.xml
setenv =
COVERAGE_FILE=.coverage.py3