mirror of https://github.com/celery/kombu.git
tox: Don't enable coverage on Py3.x
This commit is contained in:
parent
2fb139003f
commit
6cba7c66d4
28
tox.ini
28
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]
|
||||
|
|
Loading…
Reference in New Issue