diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-02-01 08:22:37 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-02-01 08:22:37 -0500 |
commit | d85af798072dbec82fabdf2eee56e0b2dcd805c1 (patch) | |
tree | 5109d376869509763a1e47f896b098c57b86e324 | |
parent | 6b681beaf701b1eb76d446fa4ef8894464441835 (diff) | |
download | python-coveragepy-git-d85af798072dbec82fabdf2eee56e0b2dcd805c1.tar.gz |
Show more detailed version information when running all the tests.
-rwxr-xr-x | alltests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alltests.sh b/alltests.sh index c6cae5b2..3371021b 100755 --- a/alltests.sh +++ b/alltests.sh @@ -13,9 +13,9 @@ for v in 24 25 26 27 31 32 # 23 do source ../ve/$v/bin/activate python setup.py -q develop - echo "=== $v c ===" + python -c "import platform; print('=== Python %s with C tracer ===' % platform.python_version())" COVERAGE_TEST_TRACER=c nosetests $@ - echo "=== $v py ===" + python -c "import platform; print('=== Python %s with Python tracer ===' % platform.python_version())" rm coverage/tracer*.so COVERAGE_TEST_TRACER=py nosetests $@ done |