diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 19:40:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 19:40:54 -0500 |
commit | dd2256488bfcccabb9b27f6af082558f00204224 (patch) | |
tree | 9d6a754d62fa15804fec912e300bfa39a7f6b836 | |
parent | 2d750f9ad73276e08eb638838475f5709adb2d14 (diff) | |
download | python-coveragepy-dd2256488bfcccabb9b27f6af082558f00204224.tar.gz |
Less noise in the test output.
-rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,8 +11,8 @@ setenv = PYTHONPATH=test/eggsrc commands = - {envpython} setup.py clean - {envpython} setup.py develop + {envpython} setup.py --quiet clean + {envpython} setup.py --quiet develop # Create test/zipmods.zip {envpython} igor.py zip_mods @@ -24,7 +24,7 @@ commands = {envpython} igor.py test_with_tracer py {posargs} # Build the C extension and test with the CTracer - {envpython} setup.py build_ext --inplace + {envpython} setup.py --quiet build_ext --inplace {envpython} igor.py test_with_tracer c {posargs} deps = |