summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run.sh b/test/run.sh
index 529956f..63698ab 100755
--- a/test/run.sh
+++ b/test/run.sh
@@ -7,13 +7,13 @@ export LC_ALL=en_US.UTF-8
THISDIR=`dirname $0`
export PYTHONPATH=${THISDIR}/..
-PYTHONS="python2.7 python3.5 bad"
+PYTHONS="python2.7 python3.5"
for pyver in $PYTHONS; do
if which $pyver > /dev/null; then
+ echo "found $pyver"
$pyver ${THISDIR}/test.py
else
echo "version $pyver not found"
-
fi
done