From 6cba7c66d4ddc34124c0c9fdcb0a9a467e621dff Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 13 Feb 2013 12:32:51 +0000 Subject: [PATCH] tox: Don't enable coverage on Py3.x --- tox.ini | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/tox.ini b/tox.ini index 68be6956..d8e03713 100644 --- a/tox.ini +++ b/tox.ini @@ -7,45 +7,25 @@ sitepackages = False commands = nosetests [testenv:py33] -distribute= True +distribute = True basepython = python3.3 deps = -r{toxinidir}/requirements/default.txt -r{toxinidir}/requirements/test3.txt -r{toxinidir}/requirements/test-ci.txt commands = {toxinidir}/extra/release/removepyc.sh {toxinidir} nosetests -vds kombu.tests \ - --with-coverage3 \ - --cover3-branch \ - --cover3-xml \ - --cover3-xml-file={toxinidir}/coverage.xml \ - --cover3-package=kombu \ - --cover3-exclude="kombu kombu.utils.* \ - kombu.transport.pypika \ - kombu.transport.pycouchdb \ - kombu.transport.mongodb \ - kombu.transport.beanstalk \ - kombu.transport.zookeeper" \ - --with-xunit \ + --with-xunit \ --xunit-file={toxinidir}/nosetests.xml [testenv:py32] -distribute= True +distribute = True basepython = python3.2 deps = -r{toxinidir}/requirements/default.txt -r{toxinidir}/requirements/test3.txt -r{toxinidir}/requirements/test-ci.txt commands = {toxinidir}/extra/release/removepyc.sh {toxinidir} nosetests -vds kombu.tests \ - --with-coverage3 \ - --cover3-branch \ - --cover3-xml \ - --cover3-xml-file={toxinidir}/coverage.xml \ - --cover3-package=kombu \ - --cover3-exclude="kombu kombu.utils.* \ - kombu.transport.mongodb \ - kombu.transport.beanstalk \ - kombu.transport.zookeeper" \ - --with-xunit \ + --with-xunit \ --xunit-file={toxinidir}/nosetests.xml [testenv:py27]