adapt to new tox indexserver syntax
This commit is contained in:
parent
07b67d36c4
commit
51fa358d8a
15
tox.ini
15
tox.ini
|
@ -1,16 +1,19 @@
|
||||||
[tox]
|
[tox]
|
||||||
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=
|
|
||||||
default http://pypi.testrun.org
|
[indexserver:default]
|
||||||
pypi http://pypi.python.org/simple
|
url = http://pypi.testrun.org
|
||||||
|
|
||||||
|
[indexserver:pypi]
|
||||||
|
url = http://pypi.python.org/simple
|
||||||
|
|
||||||
[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=
|
||||||
pypi pexpect
|
:pypi:pexpect
|
||||||
pypi nose
|
:pypi:nose
|
||||||
|
|
||||||
[testenv:genscript]
|
[testenv:genscript]
|
||||||
changedir=.
|
changedir=.
|
||||||
|
@ -27,7 +30,7 @@ commands=
|
||||||
[testenv:doc]
|
[testenv:doc]
|
||||||
basepython=python
|
basepython=python
|
||||||
changedir=doc
|
changedir=doc
|
||||||
deps=pypi sphinx
|
deps=:pypi:sphinx
|
||||||
pytest
|
pytest
|
||||||
|
|
||||||
commands=
|
commands=
|
||||||
|
|
Loading…
Reference in New Issue