Skip to content

Commit c591f4e

Browse files
committed
Administrivia
1 parent 69c5d46 commit c591f4e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

admin-tools/check-3.0-3.2-versions.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
# Run tests over all Python versions in branch python-3.0-3.2
3+
4+
owd=$(pwd)
5+
6+
cd $(dirname ${BASH_SOURCE[0]})
7+
if ! source ./pyenv-3.0-3.2-versions ; then
8+
exit $?
9+
fi
10+
if ! source ./setup-python-3.0.sh ; then
11+
exit $?
12+
fi
13+
14+
cd ..
15+
for version in $PYVERSIONS; do
16+
echo --- $version ---
17+
if ! pyenv local $version ; then
18+
exit $?
19+
fi
20+
make clean && python setup.py develop
21+
if ! make check ; then
22+
exit $?
23+
fi
24+
echo === $version ===
25+
done
26+
cd $owd

0 commit comments

Comments
 (0)