test_ok2/tox.ini

133 lines
2.6 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=
flakes,py26,py27,py33,py34,pypy,
{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}
deps=
2013-05-07 22:26:56 +08:00
nose
2014-03-27 02:37:49 +08:00
mock
[testenv:genscript]
commands= py.test --genscript=pytest1
[testenv:flakes]
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=
2015-06-23 22:31:24 +08:00
py.test -n3 -rfsxX 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
[testenv:coveralls]
changedir=testing
deps =
{[testenv]deps}
coveralls
commands=
coverage run --source=_pytest {envdir}/bin/py.test
coverage report -m
coveralls
passenv=COVERALLS_REPO_TOKEN
[pytest]
minversion=2.0
plugins=pytester
2012-06-12 19:41:29 +08:00
#--pyargs --doctest-modules --ignore=.tox
2015-03-24 20:41:49 +08:00
addopts= -rxsX
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