2014-05-30 13:41:48 +00:00
|
|
|
[tox]
|
2016-10-11 19:33:31 +00:00
|
|
|
envlist =
|
|
|
|
2.7
|
|
|
|
pypy
|
|
|
|
3.4
|
|
|
|
3.5
|
2017-04-12 05:24:04 +00:00
|
|
|
3.6
|
2018-03-19 17:28:43 +00:00
|
|
|
3.7
|
2016-10-11 19:33:31 +00:00
|
|
|
flake8
|
|
|
|
flakeplus
|
|
|
|
apicheck
|
|
|
|
pydocstyle
|
2014-05-30 13:41:48 +00:00
|
|
|
|
|
|
|
[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
|
|
|
|
2018-09-05 12:42:04 +00:00
|
|
|
2.7,pypy,cov: -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
|
2016-10-11 19:33:31 +00:00
|
|
|
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
|
2016-04-08 21:03:29 +00:00
|
|
|
|
|
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
2018-08-16 12:53:25 +00:00
|
|
|
pytest -rxs -xv --cov=kombu --cov-report=xml --no-cov-on-fail {posargs}
|
2016-04-08 21:03:29 +00:00
|
|
|
|
2015-09-29 21:44:06 +00:00
|
|
|
basepython =
|
2019-01-09 21:20:36 +00:00
|
|
|
2.7,flakeplus,flake8,apicheck,linkcheck,cov,pydocstyle: python2.7
|
2015-09-29 21:44:06 +00:00
|
|
|
3.4: python3.4
|
|
|
|
3.5: python3.5
|
2017-04-12 05:24:04 +00:00
|
|
|
3.6: python3.6
|
2019-01-09 21:20:36 +00:00
|
|
|
3.7: python3.7
|
2015-09-29 21:44:06 +00:00
|
|
|
pypy: pypy
|
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
|
2019-01-09 14:47:52 +00:00
|
|
|
sphinx-build -j2 -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
|
2019-01-09 14:47:52 +00:00
|
|
|
sphinx-build -j2 -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
2016-04-05 21:57:00 +00:00
|
|
|
|
|
|
|
[testenv:flake8]
|
|
|
|
commands =
|
2019-01-09 20:55:55 +00:00
|
|
|
flake8 -j2 {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
|
2016-10-11 19:33:31 +00:00
|
|
|
|
|
|
|
[testenv:pydocstyle]
|
|
|
|
commands =
|
2016-10-11 20:33:10 +00:00
|
|
|
pydocstyle {toxinidir}/kombu
|