Codebase list python-magic-ahupp / 9af943e
fixes to run.sh Adam Hupp 5 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
66 THISDIR=`dirname $0`
77 export PYTHONPATH=${THISDIR}/..
88
9 PYTHONS="python2.7 python3.5 bad"
9 PYTHONS="python2.7 python3.5"
1010
1111 for pyver in $PYTHONS; do
1212 if which $pyver > /dev/null; then
13 echo "found $pyver"
1314 $pyver ${THISDIR}/test.py
1415 else
1516 echo "version $pyver not found"
16
1717 fi
1818 done