1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#!/bin/bash
function cmdcheck() {
command -v $0 >/dev/null 2>&1 || { echo >&2 "ERROR: command $0 required but it's not installed; aborting..."; exit -1; }
}
cmdcheck python3
PYTHON_VERSION=`python3 -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)";`
cmdcheck 2to3-$PYTHON_VERSION
cmdcheck nosetests-$PYTHON_VERSION
python3 setup.py build
if [ -d build/py3_testing ]; then
rm -r build/py3_testing
echo "removed build/py3_testing directory from previous run"
fi
mkdir build/py3_testing
cp -r test build/py3_testing/
cp -r build/lib/SPARQLWrapper build/py3_testing/
cd build/py3_testing
2to3-$PYTHON_VERSION -wn --no-diffs test
sed -i.bak s/urllib2._opener/urllib.request._opener/g test/wrapper_test.py
if hash nosetests3 2>/dev/null; then
nosetests3
else
nosetests
fi
cd ../..
|