summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2018-08-16 08:08:50 -0700
committerAdam Hupp <adam@hupp.org>2018-08-16 08:08:50 -0700
commit9af943e0564c662f3e99cc4ee86363b8df1aff46 (patch)
treee6b17a819f74e51c21cb54984fb16fcf2e4e1158 /test
parent6102e9f56d93894c74413f43eaebb369f6df790f (diff)
downloadpython-magic-9af943e0564c662f3e99cc4ee86363b8df1aff46.tar.gz
fixes to run.sh
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