use pypi.testrun.org so that py>1.4.0 gets picked up correctly
This commit is contained in:
parent
5daef51000
commit
ae9b7a8bea
17
tox.ini
17
tox.ini
|
@ -2,15 +2,16 @@
|
||||||
distshare={homedir}/.tox/distshare
|
distshare={homedir}/.tox/distshare
|
||||||
envlist=py26,py27,py31,py32,py27-xdist,py25,py24
|
envlist=py26,py27,py31,py32,py27-xdist,py25,py24
|
||||||
indexserver=
|
indexserver=
|
||||||
default = http://pypi.python.org/simple
|
pypi = http://pypi.python.org/simple
|
||||||
testrun = http://pypi.testrun.org
|
testrun = http://pypi.testrun.org
|
||||||
|
default = http://pypi.testrun.org
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
changedir=testing
|
changedir=testing
|
||||||
commands= py.test -rfsxX --junitxml={envlogdir}/junit-{envname}.xml []
|
commands= py.test -rfsxX --junitxml={envlogdir}/junit-{envname}.xml []
|
||||||
deps=
|
deps=
|
||||||
pexpect
|
:pypi:pexpect
|
||||||
nose
|
:pypi:nose
|
||||||
|
|
||||||
[testenv:genscript]
|
[testenv:genscript]
|
||||||
changedir=.
|
changedir=.
|
||||||
|
@ -28,7 +29,7 @@ commands=
|
||||||
[testenv:trial]
|
[testenv:trial]
|
||||||
changedir=.
|
changedir=.
|
||||||
basepython=python2.6
|
basepython=python2.6
|
||||||
deps=twisted
|
deps=:pypi:twisted
|
||||||
commands=
|
commands=
|
||||||
py.test -rsxf \
|
py.test -rsxf \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml [testing/test_unittest.py]
|
--junitxml={envlogdir}/junit-{envname}.xml [testing/test_unittest.py]
|
||||||
|
@ -41,15 +42,15 @@ deps=
|
||||||
[testenv:doc]
|
[testenv:doc]
|
||||||
basepython=python
|
basepython=python
|
||||||
changedir=doc
|
changedir=doc
|
||||||
deps=sphinx
|
deps=:pypi:sphinx
|
||||||
pytest
|
pytest
|
||||||
|
|
||||||
commands=
|
commands=
|
||||||
make html
|
make html
|
||||||
|
|
||||||
[testenv:py31]
|
[testenv:py31]
|
||||||
deps=py>=1.4.0
|
deps=py>1.4.0
|
||||||
nose>=1.0
|
:pypi:nose>=1.0
|
||||||
|
|
||||||
[testenv:py31-xdist]
|
[testenv:py31-xdist]
|
||||||
deps=pytest-xdist
|
deps=pytest-xdist
|
||||||
|
@ -64,7 +65,7 @@ deps=py>=1.4.0
|
||||||
changedir=testing
|
changedir=testing
|
||||||
commands=
|
commands=
|
||||||
{envpython} {envbindir}/py.test-jython --no-tools-on-path \
|
{envpython} {envbindir}/py.test-jython --no-tools-on-path \
|
||||||
-rfsxX --junitxml={envlogdir}/junit-{envname}2.xml [acceptance_test.py plugin]
|
-rfsxX --junitxml={envlogdir}/junit-{envname}2.xml []
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
minversion=2.0
|
minversion=2.0
|
||||||
|
|
Loading…
Reference in New Issue