summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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