diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-10-22 17:05:14 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-10-22 17:05:14 -0400 |
commit | 3f19d512f0e72fbc055c488f7344a27267fd0876 (patch) | |
tree | 4731a584cd165dc55b43a3a427a7b21f60164678 | |
parent | 23485788a7d18ef828108ce64a71209787d4b001 (diff) | |
download | python-coveragepy-git-3f19d512f0e72fbc055c488f7344a27267fd0876.tar.gz |
Pass command-line args to the testing tasks
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |