mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
31 lines
527 B
Bash
31 lines
527 B
Bash
#!/bin/bash
|
|
# Run tests over all Python versions in branch python-3.3-3.5
|
|
set -e
|
|
function finish {
|
|
cd $owd
|
|
}
|
|
owd=$(pwd)
|
|
trap finish EXIT
|
|
|
|
cd $(dirname ${BASH_SOURCE[0]})
|
|
if ! source ./pyenv-3.3-3.5-versions ; then
|
|
exit $?
|
|
fi
|
|
if ! source ./setup-python-3.3.sh ; then
|
|
exit $?
|
|
fi
|
|
|
|
cd ..
|
|
for version in $PYVERSIONS; do
|
|
echo --- $version ---
|
|
if ! pyenv local $version ; then
|
|
exit $?
|
|
fi
|
|
make clean && python setup.py develop
|
|
if ! make check ; then
|
|
exit $?
|
|
fi
|
|
echo === $version ===
|
|
done
|
|
finish
|