kombu/tox.ini

44 lines
1.2 KiB
INI
Raw Normal View History

[tox]
2016-04-08 21:03:29 +00:00
envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus,apicheck
[testenv]
sitepackages = False
2014-08-11 17:38:07 +00:00
setenv = C_DEBUG_TEST = 1
2015-09-29 21:44:06 +00:00
deps=
-r{toxinidir}/requirements/default.txt
2016-04-05 21:57:00 +00:00
-r{toxinidir}/requirements/test.txt
2016-04-11 19:48:51 +00:00
-r{toxinidir}/requirements/test-ci.txt
2015-09-29 21:44:06 +00:00
2016-04-11 19:48:51 +00:00
2.7,pypy,jython: -r{toxinidir}/requirements/test-ci-py2.txt
2016-04-05 21:57:00 +00:00
2016-04-08 21:03:29 +00:00
apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
flake8,flakeplus: -r{toxinidir}/requirements/pkgutils.txt
commands = pip install -U -r{toxinidir}/requirements/dev.txt
py.test -xv --cov=kombu/ --cov-report=xml --no-cov-on-fail
2016-04-08 21:03:29 +00:00
2015-09-29 21:44:06 +00:00
basepython =
2016-04-08 21:03:29 +00:00
2.7,flakeplus,flake8,apicheck,linkcheck: python2.7
2015-09-29 21:44:06 +00:00
3.3: python3.3
3.4: python3.4
3.5: python3.5
pypy: pypy
pypy3: pypy3
jython: jython
2016-04-08 21:03:29 +00:00
[testenv:apicheck]
2016-04-09 05:05:31 +00:00
commands = pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
2016-04-08 21:03:29 +00:00
[testenv:linkcheck]
2016-04-09 05:05:31 +00:00
commands = pip install -U -r{toxinidir}/requirements/dev.txt
2016-04-08 21:03:29 +00:00
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
2016-04-05 21:57:00 +00:00
[testenv:flake8]
commands =
2016-08-24 02:28:05 +00:00
flake8 --ignore=X999 {toxinidir}/kombu {toxinidir}/t
2016-04-05 21:57:00 +00:00
[testenv:flakeplus]
commands =
2016-08-24 02:28:05 +00:00
flakeplus --2.7 {toxinidir}/kombu {toxinidir}/t