summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-02-20 17:57:25 -0600
committerMichael Merickel <michael@merickel.org>2015-02-20 18:12:27 -0600
commitd476e6932f67adee5116620b546590ba0c2083de (patch)
treeead1ee9262b1ee5fc92c1a8da1537d57b5484222
parenta9282da880bfc1da654fc1c547a20fdfb3539fd1 (diff)
downloadpyramid-d476e6932f67adee5116620b546590ba0c2083de.tar.gz
pyramid-d476e6932f67adee5116620b546590ba0c2083de.tar.bz2
pyramid-d476e6932f67adee5116620b546590ba0c2083de.zip
dump xunit for py2/py3 targets
-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