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
commit3f19d512f0e72fbc055c488f7344a27267fd0876 (patch)
tree4731a584cd165dc55b43a3a427a7b21f60164678
parent23485788a7d18ef828108ce64a71209787d4b001 (diff)
downloadpython-coveragepy-git-3f19d512f0e72fbc055c488f7344a27267fd0876.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 13d22ab9..6fbb2084 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