summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-10-22 17:05:14 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-10-22 17:05:14 -0400
commit7960d96c12a3c61ca5b890c96442a75b0d7259cd (patch)
tree1c8e29acfd232e92409ddb5a6ffc46205ff4f6f5
parent4754b69942f79f76ba6700997504865b08ac86f4 (diff)
downloadpython-coveragepy-7960d96c12a3c61ca5b890c96442a75b0d7259cd.tar.gz
Pass command-line args to the testing tasks
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 13d22ab..6fbb208 100644
--- a/tox.ini
+++ b/tox.ini
@@ -21,11 +21,11 @@ commands =
{envpython} igor.py remove_extension
# Test with the PyTracer
- {envpython} igor.py test_with_tracer py
+ {envpython} igor.py test_with_tracer py {posargs}
# Build the C extension and test with the CTracer
{envpython} setup.py build_ext --inplace
- {envpython} igor.py test_with_tracer c
+ {envpython} igor.py test_with_tracer c {posargs}
deps =
nose