summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorholger <holger@merlinux.eu>2012-06-05 15:16:25 +0200
committerholger <holger@merlinux.eu>2012-06-05 15:16:25 +0200
commit41b434151476c00038e3c4f33b7d3612c6d8a5db (patch)
tree76ea242d3944e3baaf65554f2ca7dcc632070565 /tox.ini
parent6c62d319d1801f3bfef3bf8361f0b396748c15cd (diff)
downloadtox-41b434151476c00038e3c4f33b7d3612c6d8a5db.tar.gz
fix for windows: use shell=True. this avoids a strange error where a command was not found
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 3 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index d117a21..4f28b66 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist=py27,py26,py25,py24,py31,docs
+envlist=py27,py26,py25,py24,py31,py32,docs
indexserver =
testrun = http://pypi.testrun.org
pypi = http://pypi.python.org/simple
@@ -8,18 +8,14 @@ indexserver =
commands=echo {posargs}
[testenv]
-commands=py.test --junitxml={envlogdir}/junit-{envname}.xml []
+commands=py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
deps=:testrun:pytest
-[testenv:py27-xdist]
-commands=py.test -n5 --junitxml={envlogdir}/junit-{envname}.xml []
-deps=pytest-xdist
-
[testenv:docs]
basepython=python
changedir=doc
deps=:pypi:sphinx
- pytest
+ {testenv$deps}
commands=
py.test -v \
--junitxml={envlogdir}/junit-{envname}.xml \