mirror of https://github.com/celery/kombu.git
81 lines
2.3 KiB
INI
81 lines
2.3 KiB
INI
[tox]
|
|
envlist =
|
|
{pypy3,3.7,3.8,3.9}-unit
|
|
{pypy3,3.7,3.8,3.9}-linux-integration-py-amqp
|
|
{pypy3,3.7,3.8,3.9}-linux-integration-redis
|
|
flake8
|
|
flakeplus
|
|
apicheck
|
|
pydocstyle
|
|
|
|
requires = tox-docker>=2.0
|
|
|
|
[testenv]
|
|
sitepackages = False
|
|
setenv = C_DEBUG_TEST = 1
|
|
passenv =
|
|
DISTUTILS_USE_SDK
|
|
deps=
|
|
-r{toxinidir}/requirements/dev.txt
|
|
apicheck,pypy3,3.7,3.8,3.9: -r{toxinidir}/requirements/default.txt
|
|
apicheck,pypy3,3.7,3.8,3.9: -r{toxinidir}/requirements/test.txt
|
|
apicheck,pypy3,3.7-linux,3.8-linux,3.9-linux: -r{toxinidir}/requirements/test-ci.txt
|
|
3.7-windows,3.8-windows,3.9-windows: -r{toxinidir}/requirements/test-ci-windows.txt
|
|
apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
|
|
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
|
|
|
|
commands =
|
|
unit: python -bb -m pytest -rxs -xv --cov=kombu --cov-report=xml --no-cov-on-fail {posargs}
|
|
integration-py-amqp: py.test -xv -E py-amqp t/integration {posargs:-n2}
|
|
integration-redis: py.test -xv -E redis t/integration {posargs:-n2}
|
|
|
|
basepython =
|
|
3.7: python3.7
|
|
3.8: python3.8
|
|
3.9,apicheck,pydocstyle,flake8,linkcheck,cov: python3.9
|
|
pypy3: pypy
|
|
|
|
install_command = python -m pip --disable-pip-version-check install {opts} {packages}
|
|
|
|
docker =
|
|
integration-py-amqp: rabbitmq
|
|
integration-redis: redis
|
|
|
|
dockerenv =
|
|
PYAMQP_INTEGRATION_INSTANCE=1
|
|
RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit tcp_listeners [5672]
|
|
|
|
[docker:rabbitmq]
|
|
image = rabbitmq
|
|
ports = 5672:5672/tcp
|
|
healthcheck_cmd = /bin/bash -c 'rabbitmq-diagnostics ping -q'
|
|
healthcheck_interval = 10
|
|
healthcheck_timeout = 10
|
|
healthcheck_retries = 30
|
|
healthcheck_start_period = 5
|
|
|
|
[docker:redis]
|
|
image = redis
|
|
ports = 6379:6379/tcp
|
|
healthcheck_cmd = /bin/sh -c 'redis-cli ping'
|
|
healthcheck_interval = 10
|
|
healthcheck_timeout = 10
|
|
healthcheck_retries = 30
|
|
healthcheck_start_period = 5
|
|
|
|
[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:pydocstyle]
|
|
commands =
|
|
pydocstyle {toxinidir}/kombu
|