28 lines
455 B
INI
28 lines
455 B
INI
[tox]
|
|
envlist=py26,py32,py33,py27,py27-pexpect,py33-pexpect,py26,py26-old,py33-old
|
|
|
|
[testenv]
|
|
changedir=testing
|
|
deps=pytest>=2.5.1
|
|
commands= py.test --junitxml={envlogdir}/junit-{envname}.xml []
|
|
|
|
[testenv:py27-pexpect]
|
|
deps={[testenv]deps}
|
|
pexpect
|
|
[testenv:py33-pexpect]
|
|
deps={[testenv]deps}
|
|
pexpect
|
|
|
|
[testenv:py26-old]
|
|
deps=
|
|
pytest==2.4.2
|
|
|
|
[testenv:py33-old]
|
|
basepython = python3.3
|
|
deps=
|
|
pytest==2.4.2
|
|
|
|
[pytest]
|
|
addopts = -rsfxX
|
|
;; hello
|