summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-02-01 08:22:37 -0500
committerNed Batchelder <ned@nedbatchelder.com>2011-02-01 08:22:37 -0500
commitd85af798072dbec82fabdf2eee56e0b2dcd805c1 (patch)
tree5109d376869509763a1e47f896b098c57b86e324
parent6b681beaf701b1eb76d446fa4ef8894464441835 (diff)
downloadpython-coveragepy-git-d85af798072dbec82fabdf2eee56e0b2dcd805c1.tar.gz
Show more detailed version information when running all the tests.
-rwxr-xr-xalltests.sh4
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