mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 13:09:49 +00:00
Administrivia
This commit is contained in:
parent
69c5d463e6
commit
c591f4e6e6
26
admin-tools/check-3.0-3.2-versions.sh
Normal file
26
admin-tools/check-3.0-3.2-versions.sh
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Run tests over all Python versions in branch python-3.0-3.2
|
||||||
|
|
||||||
|
owd=$(pwd)
|
||||||
|
|
||||||
|
cd $(dirname ${BASH_SOURCE[0]})
|
||||||
|
if ! source ./pyenv-3.0-3.2-versions ; then
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
if ! source ./setup-python-3.0.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
|
||||||
|
cd $owd
|
Loading…
Reference in New Issue
Block a user