summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2011-09-13 18:24:32 +0100
committerAsk Solem <ask@celeryproject.org>2011-09-13 18:25:02 +0100
commit61b47789f48f723a4d70386637d0f4a5d25a66c2 (patch)
tree02df9924c5a5bfc73fbb1f1e0692d8d96a62b5c4 /tox.ini
parentd5d89b58eb2d9b06f36c1f27933da81634a6c8be (diff)
downloadkombu-61b47789f48f723a4d70386637d0f4a5d25a66c2.tar.gz
Tox: remove pyc files before testing
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 10 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index eaeda3ae..c9ef7364 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,8 @@ basepython = python3.2
changedir = .tox
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test-py3k.txt
-commands = nosetests -vd kombu.tests \
+commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+ nosetests -vd kombu.tests \
--with-coverage3 \
--cover3-branch \
--cover3-xml \
@@ -32,7 +33,8 @@ commands = nosetests -vd kombu.tests \
basepython = python2.7
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = nosetests --with-xunit --xunit-file=nosetests.xml \
+commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+ nosetests --with-xunit --xunit-file=nosetests.xml \
--with-coverage3 --cover3-xml \
--cover3-xml-file=coverage.xml
@@ -40,7 +42,8 @@ commands = nosetests --with-xunit --xunit-file=nosetests.xml \
basepython = python2.6
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = nosetests --with-xunit --xunit-file=nosetests.xml \
+commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+ nosetests --with-xunit --xunit-file=nosetests.xml \
--with-coverage3 --cover3-xml \
--cover3-xml-file=coverage.xml
@@ -48,7 +51,8 @@ commands = nosetests --with-xunit --xunit-file=nosetests.xml \
basepython = python2.5
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = nosetests --with-xunit --xunit-file=nosetests.xml \
+commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+ nosetests --with-xunit --xunit-file=nosetests.xml \
--with-coverage3 --cover3-xml \
--cover3-xml-file=coverage.xml
@@ -56,6 +60,7 @@ commands = nosetests --with-xunit --xunit-file=nosetests.xml \
basepython = pypy
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test-pypy.txt
-commands = nosetests --with-xunit --xunit-file=nosetests.xml \
+commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+ nosetests --with-xunit --xunit-file=nosetests.xml \
--with-coverage3 --cover3-xml \
--cover3-xml-file=coverage.xml