From 015d9c122d2489e1431633d8db293bfbfa724026 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 19 Mar 2014 19:26:15 +0000 Subject: [PATCH] Adds Python 3.4 target for Tox --- tox.ini | 11 +++++++++++ 1 file changed, 11 insertions(+) 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