mirror of https://github.com/celery/kombu.git
45 lines
1.3 KiB
INI
45 lines
1.3 KiB
INI
[tox]
|
|
envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus,apicheck
|
|
|
|
[testenv]
|
|
sitepackages = False
|
|
setenv = C_DEBUG_TEST = 1
|
|
deps=
|
|
-r{toxinidir}/requirements/default.txt
|
|
-r{toxinidir}/requirements/test.txt
|
|
|
|
2.7,pypy,jython: -r{toxinidir}/requirements/test-ci.txt
|
|
3.3,3.4,3.5,pypy3: -r{toxinidir}/requirements/test-ci3.txt
|
|
|
|
apicheck,linkcheck: -r{toxinidir}/requirements/docs.txt
|
|
flake8,flakeplus: -r{toxinidir}/requirements/pkgutils.txt
|
|
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
nosetests -vdsx kombu.tests \
|
|
--with-coverage --cover-inclusive --cover-erase []
|
|
|
|
basepython =
|
|
2.7,flakeplus,flake8,apicheck,linkcheck: python2.7
|
|
3.3: python3.3
|
|
3.4: python3.4
|
|
3.5: python3.5
|
|
pypy: pypy
|
|
pypy3: pypy3
|
|
jython: jython
|
|
|
|
[testenv:apicheck]
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
sphinx-build -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
|
|
|
|
[testenv:linkcheck]
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
|
|
|
[testenv:flake8]
|
|
commands =
|
|
flake8 {toxinidir}/kombu
|
|
|
|
[testenv:flakeplus]
|
|
commands =
|
|
flakeplus --2.7 {toxinidir}/kombu
|