mirror of https://github.com/celery/kombu.git
62 lines
1.8 KiB
INI
62 lines
1.8 KiB
INI
[tox]
|
|
envlist =
|
|
2.7
|
|
pypy
|
|
pypy3
|
|
3.5
|
|
3.6
|
|
3.7-{linux,windows}
|
|
3.8-{linux,windows}
|
|
flake8
|
|
flakeplus
|
|
apicheck
|
|
pydocstyle
|
|
|
|
[testenv]
|
|
sitepackages = False
|
|
setenv = C_DEBUG_TEST = 1
|
|
passenv =
|
|
DISTUTILS_USE_SDK
|
|
deps=
|
|
apicheck,2.7,pypy,pypy3,3.5,3.6,3.7-linux,3.7-windows,3.8-linux,3.8-windows: -r{toxinidir}/requirements/default.txt
|
|
apicheck,2.7,pypy,pypy3,3.5,3.6,3.7-linux,3.7-windows,3.8-linux,3.8-windows: -r{toxinidir}/requirements/test.txt
|
|
apicheck,2.7,pypy,pypy3,3.5,3.6,3.7-linux,3.8-linux: -r{toxinidir}/requirements/test-ci.txt
|
|
2.7,pypy: -r{toxinidir}/requirements/test-ci-py2.txt
|
|
3.7-windows: -r{toxinidir}/requirements/test-ci-windows.txt
|
|
|
|
apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
|
|
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
|
|
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
pytest -rxs -xv --cov=kombu --cov-report=xml --no-cov-on-fail {posargs}
|
|
|
|
basepython =
|
|
2.7,flakeplus,flake8,linkcheck,cov: python2.7
|
|
3.5: python3.5
|
|
3.6,apicheck,pydocstyle: python3.6
|
|
3.7: python3.7
|
|
3.8: python3.8
|
|
pypy,pypy3: pypy
|
|
|
|
install_command = python -m pip --disable-pip-version-check install {opts} {packages}
|
|
|
|
[testenv:apicheck]
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
sphinx-build -j2 -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
|
|
|
|
[testenv:linkcheck]
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
sphinx-build -j2 -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
|
|
|
[testenv:flake8]
|
|
commands =
|
|
flake8 -j2 {toxinidir}/kombu {toxinidir}/t
|
|
|
|
[testenv:flakeplus]
|
|
commands =
|
|
flakeplus --2.7 {toxinidir}/kombu {toxinidir}/t
|
|
|
|
[testenv:pydocstyle]
|
|
commands =
|
|
pydocstyle {toxinidir}/kombu
|