summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@gmail.com>2020-04-27 10:14:53 +0200
committerAsif Saif Uddin <auvipy@gmail.com>2020-04-30 10:43:50 +0600
commit3155e9407f3b7169ce13bcf57b13673506476a81 (patch)
treebc9ca8e846b68a992c64d6808414968f7a4bf3f3 /tox.ini
parent8f1de37a08318d388a048341ddca12af30019bf3 (diff)
downloadkombu-3155e9407f3b7169ce13bcf57b13673506476a81.tar.gz
Added integration testing infrastructure for RabbitMQ
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini33
1 files changed, 23 insertions, 10 deletions
diff --git a/tox.ini b/tox.ini
index 4ac097ae..697ddf39 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,34 +1,32 @@
[tox]
envlist =
- 2.7
- pypy
- pypy3
- 3.5
- 3.6
- 3.7-{linux,windows}
- 3.8-{linux,windows}
+ {2.7,pypy,pypy3,3.5,3.6,3.7-{linux,windows},3.8{linux,windows}}-unit
+ {2.7,pypy,pypy3,3.5,3.6,3.7{linux,windows},3.8{linux,windows}}-integration-py-amqp
flake8
flakeplus
apicheck
pydocstyle
+requires = tox-docker
+
[testenv]
sitepackages = False
setenv = C_DEBUG_TEST = 1
passenv =
DISTUTILS_USE_SDK
deps=
+ -r{toxinidir}/requirements/dev.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/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
- python -bb -m pytest -rxs -xv --cov=kombu --cov-report=xml --no-cov-on-fail {posargs}
+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}
basepython =
2.7,flakeplus,flake8,linkcheck,cov: python2.7
@@ -40,6 +38,21 @@ basepython =
install_command = python -m pip --disable-pip-version-check install {opts} {packages}
+docker =
+ integration-py-amqp: rabbitmq:alpine
+
+dockerenv =
+ PYAMQP_INTEGRATION_INSTANCE=1
+ RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=-rabbit tcp_listeners [5672]
+
+[docker:rabbitmq:alpine]
+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
+
[testenv:apicheck]
commands = pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -j2 -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck