diff options
author | Ask Solem <ask@celeryproject.org> | 2014-03-19 19:26:15 +0000 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2014-03-19 19:26:15 +0000 |
commit | 015d9c122d2489e1431633d8db293bfbfa724026 (patch) | |
tree | 1d3be1f78fd2c0016752ccc6d9830162140cf30e /tox.ini | |
parent | 54198c62ed2d966bb16671e4dcc6934cdf05bc53 (diff) | |
download | kombu-015d9c122d2489e1431633d8db293bfbfa724026.tar.gz |
Adds Python 3.4 target for Tox
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |