mirror of https://github.com/celery/kombu.git
27 lines
789 B
INI
27 lines
789 B
INI
[tox]
|
|
envlist = 2.7,3.3,3.4,3.5,pypy,pypy3
|
|
|
|
[testenv]
|
|
sitepackages = False
|
|
setenv = C_DEBUG_TEST = 1
|
|
deps=
|
|
-r{toxinidir}/requirements/default.txt
|
|
|
|
2.7,pypy,jython: -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/test3.txt
|
|
3.3,3.4,3.5,pypy3: -r{toxinidir}/requirements/test-ci3.txt
|
|
basepython =
|
|
2.7: python2.7
|
|
3.3: python3.3
|
|
3.4: python3.4
|
|
3.5: python3.5
|
|
pypy: pypy
|
|
pypy3: pypy3
|
|
jython: jython
|
|
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
|
|
pip install -U -r{toxinidir}/requirements/dev.txt
|
|
nosetests -vdsx kombu.tests \
|
|
--with-coverage --cover-inclusive --cover-erase []
|