mirror of https://github.com/celery/kombu.git
Tox: specify correct xunit location
This commit is contained in:
parent
4d107d4a86
commit
c04a23057a
16
tox.ini
16
tox.ini
|
@ -33,8 +33,9 @@ basepython = python2.7
|
|||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test.txt
|
||||
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
|
||||
nosetests --with-xunit --xunit-file=nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
nosetests --with-xunit \
|
||||
--xunit-file={toxinidir}/nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
--cover3-html-dir={toxinidir}/cover \
|
||||
--cover3-xml-file=coverage.xml
|
||||
|
||||
|
@ -43,8 +44,9 @@ basepython = python2.6
|
|||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test.txt
|
||||
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
|
||||
nosetests --with-xunit --xunit-file=nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
nosetests --with-xunit \
|
||||
--xunit-file={toxinidir}/nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
--cover3-html-dir={toxinidir}/cover \
|
||||
--cover3-xml-file=coverage.xml
|
||||
|
||||
|
@ -53,7 +55,8 @@ basepython = python2.5
|
|||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test.txt
|
||||
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
|
||||
nosetests --with-xunit --xunit-file=nosetests.xml \
|
||||
nosetests --with-xunit \
|
||||
--xunit-file={toxinidir}/nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
--cover3-html-dir={toxinidir}/cover \
|
||||
--cover3-xml-file=coverage.xml
|
||||
|
@ -63,7 +66,8 @@ basepython = pypy
|
|||
deps = -r{toxinidir}/requirements/default.txt
|
||||
-r{toxinidir}/requirements/test-pypy.txt
|
||||
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
|
||||
nosetests --with-xunit --xunit-file=nosetests.xml \
|
||||
nosetests --with-xunit \
|
||||
--xunit-file={toxinidir}/nosetests.xml \
|
||||
--with-coverage3 --cover3-xml \
|
||||
--cover3-html-dir={toxinidir}/cover \
|
||||
--cover3-xml-file=coverage.xml
|
||||
|
|
Loading…
Reference in New Issue