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
commit6829e486d30a0d4174777a6f5649c68e47ba073e (patch)
tree5bbc370b610da4f4886ab2f8e7f821ec4c873fdc
parent71a76ea9db424bd5532fcf9d226f552ec290554c (diff)
downloadpython-coveragepy-6829e486d30a0d4174777a6f5649c68e47ba073e.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 c6cae5b..3371021 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