diff --git a/tox.ini b/tox.ini index ba2c2547..74100c2f 100644 --- a/tox.ini +++ b/tox.ini @@ -3,12 +3,23 @@ envlist = 2.6, 2.7, 3.3, + 3.4, pypy [testenv] sitepackages = False commands = nosetests +[testenv:3.4] +basepython = python3.4 +deps = -r{toxinidir}/requirements/default.txt + -r{toxinidir}/requirements/test3.txt + -r{toxinidir}/requirements/test-ci3.txt +commands = {toxinidir}/extra/release/removepyc.sh {toxinidir} + pip install -U -r{toxinidir}/requirements/dev.txt + nosetests -vds kombu.tests \ + --with-coverage --cover-inclusive --cover-erase [] + [testenv:3.3] basepython = python3.3 deps = -r{toxinidir}/requirements/default.txt