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 | 7960d96c12a3c61ca5b890c96442a75b0d7259cd (patch) | |
tree | 1c8e29acfd232e92409ddb5a6ffc46205ff4f6f5 | |
parent | 4754b69942f79f76ba6700997504865b08ac86f4 (diff) | |
download | python-coveragepy-7960d96c12a3c61ca5b890c96442a75b0d7259cd.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 |