We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c5d46 commit c591f4eCopy full SHA for c591f4e
admin-tools/check-3.0-3.2-versions.sh
@@ -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
12
13
14
+cd ..
15
+for version in $PYVERSIONS; do
16
+ echo --- $version ---
17
+ if ! pyenv local $version ; then
18
19
+ fi
20
+ make clean && python setup.py develop
21
+ if ! make check ; then
22
23
24
+ echo === $version ===
25
+done
26
+cd $owd
0 commit comments