tox: Don't enable coverage on Py3.x

This commit is contained in:
Ask Solem 2013-02-13 12:32:51 +00:00
parent 2fb139003f
commit 6cba7c66d4
1 changed files with 4 additions and 24 deletions

28
tox.ini
View File

@ -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]