From 2c09762faaf596b4a041dc7b4cf7a939e2829393 Mon Sep 17 00:00:00 2001 From: stroeder Date: Tue, 14 Feb 2017 18:04:07 +0000 Subject: [PATCH] Tests must match glob pattern t_*.py --- Tests/runtests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/runtests.sh b/Tests/runtests.sh index f857025..7230c6e 100755 --- a/Tests/runtests.sh +++ b/Tests/runtests.sh @@ -11,7 +11,8 @@ set -e plat_specifier=`$PYTHON -c 'import sys,distutils.util; \ print(distutils.util.get_platform()+"-"+sys.version[0:3])'` failed= -for test in t_*.py; do +for test in t_*.py +do echo "$test:" PYTHONPATH="../build/lib.$plat_specifier" $PYTHON "$test" "$@" || failed="$failed $test"