blob: 63698ab8138d8e93b6ae846363b2f26b60984ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
set -e;
# ensure we can use unicode filenames in the test
export LC_ALL=en_US.UTF-8
THISDIR=`dirname $0`
export PYTHONPATH=${THISDIR}/..
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
|