add py33-trial tox environment
This commit is contained in:
parent
b96d552dbd
commit
0cb9d26d83
14
tox.ini
14
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
distshare={homedir}/.tox/distshare
|
distshare={homedir}/.tox/distshare
|
||||||
envlist=flakes,py26,py27,pypy,py27-pexpect,py33-pexpect,py27-nobyte,py32,py33,py27-xdist,py33-xdist,trial
|
envlist=flakes,py26,py27,pypy,py27-pexpect,py33-pexpect,py27-nobyte,py32,py33,py27-xdist,py33-xdist,py27-trial,py33-trial
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
changedir=testing
|
changedir=testing
|
||||||
|
@ -61,12 +61,22 @@ commands=
|
||||||
py.test -n3 -rfsxX \
|
py.test -n3 -rfsxX \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing}
|
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing}
|
||||||
|
|
||||||
[testenv:trial]
|
[testenv:py27-trial]
|
||||||
changedir=.
|
changedir=.
|
||||||
|
basepython=python2.7
|
||||||
deps=twisted
|
deps=twisted
|
||||||
commands=
|
commands=
|
||||||
py.test -rsxf \
|
py.test -rsxf \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing/test_unittest.py}
|
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing/test_unittest.py}
|
||||||
|
|
||||||
|
[testenv:py33-trial]
|
||||||
|
changedir=.
|
||||||
|
basepython=python3.3
|
||||||
|
deps={[testenv:py27-trial]deps}
|
||||||
|
commands=
|
||||||
|
py.test -rsxf \
|
||||||
|
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing/test_unittest.py}
|
||||||
|
|
||||||
[testenv:doctest]
|
[testenv:doctest]
|
||||||
changedir=.
|
changedir=.
|
||||||
commands=py.test --doctest-modules _pytest
|
commands=py.test --doctest-modules _pytest
|
||||||
|
|
Loading…
Reference in New Issue