test_ok2/tox.ini

155 lines
3.1 KiB
INI
Raw Normal View History

[tox]
2015-06-23 22:31:24 +08:00
minversion=2.0
distshare={homedir}/.tox/distshare
2015-06-23 22:31:24 +08:00
envlist=
2015-06-24 19:16:54 +08:00
flakes,py26,py27,py33,py34,py35,pypy,
2015-06-23 22:31:24 +08:00
{py27,py34}-{pexpect,xdist,trial},
py27-nobyte,doctesting,py27-cxfreeze
2010-07-02 21:26:03 +08:00
[testenv]
2015-06-23 22:31:24 +08:00
commands= py.test --lsof -rfsxX {posargs:testing}
passenv = USER USERNAME
deps=
2013-05-07 22:26:56 +08:00
nose
2014-03-27 02:37:49 +08:00
mock
[testenv:py26]
commands= py.test --lsof -rfsxX {posargs:testing}
deps=
nose
mock<1.1 # last supported version for py26
2015-07-19 21:25:04 +08:00
<<<<<<< HEAD
[testenv:py27-subprocess]
changedir=.
basepython=python2.7
deps=pytest-xdist
mock
nose
commands=
py.test -n3 -rfsxX --runpytest=subprocess {posargs:testing}
2015-07-19 21:25:04 +08:00
=======
>>>>>>> pytest-2.7
[testenv:genscript]
commands= py.test --genscript=pytest1
[testenv:flakes]
2015-07-16 06:52:28 +08:00
basepython = python2.7
deps = pytest-flakes>=0.2
commands = py.test --flakes -m flakes _pytest testing
[testenv:py27-xdist]
deps=pytest-xdist
2013-05-07 22:26:56 +08:00
mock
nose
commands=
2015-06-23 22:31:24 +08:00
py.test -n1 -rfsxX {posargs:testing}
2015-06-23 22:31:24 +08:00
[testenv:py34-xdist]
2013-11-20 23:03:55 +08:00
deps={[testenv:py27-xdist]deps}
commands=
py.test -n3 -rfsxX {posargs:testing}
2013-11-20 23:03:55 +08:00
[testenv:py27-pexpect]
changedir=testing
2015-06-23 22:31:24 +08:00
platform=linux|darwin
deps=pexpect
commands=
py.test -rfsxX test_pdb.py test_terminal.py test_unittest.py
2015-06-23 22:31:24 +08:00
[testenv:py34-pexpect]
changedir=testing
2015-06-23 22:31:24 +08:00
platform=linux|darwin
deps={[testenv:py27-pexpect]deps}
commands=
py.test -rfsxX test_pdb.py test_terminal.py test_unittest.py
[testenv:py27-nobyte]
deps=pytest-xdist
distribute=true
setenv=
PYTHONDONTWRITEBYTECODE=1
commands=
2015-06-23 22:31:24 +08:00
py.test -n3 -rfsxX {posargs:testing}
2014-03-28 21:44:51 +08:00
[testenv:py27-trial]
2013-05-07 22:26:56 +08:00
deps=twisted
commands=
2015-06-23 22:31:24 +08:00
py.test -rsxf {posargs:testing/test_unittest.py}
2014-03-28 21:44:51 +08:00
2015-06-23 22:31:24 +08:00
[testenv:py34-trial]
# py34-trial does not work
platform=linux|darwin
2014-03-28 21:44:51 +08:00
deps={[testenv:py27-trial]deps}
commands=
2015-06-23 22:31:24 +08:00
py.test -rsxf {posargs:testing/test_unittest.py}
2014-03-28 21:44:51 +08:00
[testenv:doctest]
commands=py.test --doctest-modules _pytest
deps=
[testenv:doc]
basepython=python
changedir=doc/en
2013-05-07 22:26:56 +08:00
deps=sphinx
PyYAML
commands=
{envpython} plugins_index/plugins_index.py
make clean
make html
[testenv:doctesting]
changedir=doc/en
deps=PyYAML
2015-06-23 22:31:24 +08:00
commands= py.test -rfsxX {posargs}
[testenv:regen]
changedir=doc/en
2013-05-07 22:26:56 +08:00
deps=sphinx
PyYAML
commands=
rm -rf /tmp/doc-exec*
#pip install pytest==2.3.4
make regen
2010-07-02 01:43:46 +08:00
[testenv:jython]
changedir=testing
commands=
2015-06-23 22:31:24 +08:00
{envpython} {envbindir}/py.test-jython -rfsxX {posargs}
[testenv:py27-cxfreeze]
changedir=testing/cx_freeze
2015-06-23 22:31:24 +08:00
platform=linux|darwin
commands=
{envpython} install_cx_freeze.py
{envpython} runtests_setup.py build --build-exe build
{envpython} tox_run.py
2015-06-23 22:31:24 +08:00
2015-06-16 06:40:49 +08:00
[testenv:coveralls]
2015-06-16 07:37:55 +08:00
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
usedevelop=True
2015-06-16 06:40:49 +08:00
basepython=python3.4
2015-06-24 05:25:19 +08:00
changedir=.
2015-06-16 06:40:49 +08:00
deps =
{[testenv]deps}
coveralls
commands=
2015-06-16 07:37:55 +08:00
coverage run --source=_pytest {envdir}/bin/py.test testing
2015-06-16 06:40:49 +08:00
coverage report -m
coveralls
[pytest]
minversion=2.0
plugins=pytester
2012-06-12 19:41:29 +08:00
#--pyargs --doctest-modules --ignore=.tox
addopts= -rxsX -p pytester --ignore=testing/cx_freeze
rsyncdirs=tox.ini pytest.py _pytest testing
python_files=test_*.py *_test.py testing/*/*.py
python_classes=Test Acceptance
python_functions=test
pep8ignore = E401 E225 E261 E128 E124 E302
2015-06-23 22:31:24 +08:00
norecursedirs = .tox ja .hg cx_freeze_source