don't use indexservers anymore
This commit is contained in:
parent
5fb4a100c9
commit
3279cfa28b
30
tox.ini
30
tox.ini
|
@ -1,17 +1,13 @@
|
||||||
[tox]
|
[tox]
|
||||||
distshare={homedir}/.tox/distshare
|
distshare={homedir}/.tox/distshare
|
||||||
envlist=py25,py26,py27,py27-nobyte,py32,py33,py27-xdist,trial
|
envlist=py25,py26,py27,py27-nobyte,py32,py33,py27-xdist,trial
|
||||||
indexserver=
|
|
||||||
pypi = https://pypi.python.org/simple
|
|
||||||
testrun = http://pypi.testrun.org
|
|
||||||
default = http://pypi.testrun.org
|
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
changedir=testing
|
changedir=testing
|
||||||
commands= py.test --lsof -rfsxX --junitxml={envlogdir}/junit-{envname}.xml []
|
commands= py.test --lsof -rfsxX --junitxml={envlogdir}/junit-{envname}.xml []
|
||||||
deps=
|
deps=
|
||||||
:pypi:pexpect
|
pexpect
|
||||||
:pypi:nose
|
nose
|
||||||
|
|
||||||
[testenv:genscript]
|
[testenv:genscript]
|
||||||
changedir=.
|
changedir=.
|
||||||
|
@ -21,8 +17,8 @@ commands= py.test --genscript=pytest1
|
||||||
changedir=.
|
changedir=.
|
||||||
basepython=python2.7
|
basepython=python2.7
|
||||||
deps=pytest-xdist
|
deps=pytest-xdist
|
||||||
:pypi:mock
|
mock
|
||||||
:pypi:nose
|
nose
|
||||||
commands=
|
commands=
|
||||||
py.test -n3 -rfsxX \
|
py.test -n3 -rfsxX \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml testing
|
--junitxml={envlogdir}/junit-{envname}.xml testing
|
||||||
|
@ -39,8 +35,8 @@ commands=
|
||||||
|
|
||||||
[testenv:trial]
|
[testenv:trial]
|
||||||
changedir=.
|
changedir=.
|
||||||
deps=:pypi:twisted
|
deps=twisted
|
||||||
:pypi:pexpect
|
pexpect
|
||||||
commands=
|
commands=
|
||||||
py.test -rsxf testing/test_unittest.py \
|
py.test -rsxf testing/test_unittest.py \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing/test_unittest.py}
|
--junitxml={envlogdir}/junit-{envname}.xml {posargs:testing/test_unittest.py}
|
||||||
|
@ -51,17 +47,17 @@ deps=
|
||||||
|
|
||||||
[testenv:py32]
|
[testenv:py32]
|
||||||
deps=
|
deps=
|
||||||
:pypi:nose
|
nose
|
||||||
|
|
||||||
[testenv:py33]
|
[testenv:py33]
|
||||||
deps=
|
deps=
|
||||||
:pypi:nose
|
nose
|
||||||
|
|
||||||
[testenv:doc]
|
[testenv:doc]
|
||||||
basepython=python
|
basepython=python
|
||||||
changedir=doc/en
|
changedir=doc/en
|
||||||
deps=:pypi:sphinx
|
deps=sphinx
|
||||||
:pypi:PyYAML
|
PyYAML
|
||||||
|
|
||||||
commands=
|
commands=
|
||||||
make clean
|
make clean
|
||||||
|
@ -70,15 +66,15 @@ commands=
|
||||||
[testenv:regen]
|
[testenv:regen]
|
||||||
basepython=python
|
basepython=python
|
||||||
changedir=doc/en
|
changedir=doc/en
|
||||||
deps=:pypi:sphinx
|
deps=sphinx
|
||||||
:pypi:PyYAML
|
PyYAML
|
||||||
commands=
|
commands=
|
||||||
rm -rf /tmp/doc-exec*
|
rm -rf /tmp/doc-exec*
|
||||||
#pip install pytest==2.3.4
|
#pip install pytest==2.3.4
|
||||||
make regen
|
make regen
|
||||||
|
|
||||||
[testenv:py31]
|
[testenv:py31]
|
||||||
deps=:pypi:nose>=1.0
|
deps=nose>=1.0
|
||||||
|
|
||||||
[testenv:py31-xdist]
|
[testenv:py31-xdist]
|
||||||
deps=pytest-xdist
|
deps=pytest-xdist
|
||||||
|
|
Loading…
Reference in New Issue