File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 77/.eggs
88/.hypothesis
99/.idea
10+ /.jython_cache
1011/.pytest_cache
1112/.python-version
1213/.tox
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ function finish {
3+ if [[ -n ${python_control_flow_owd} ]] && [[ -d $python_control_flow_owd ]]; then
4+ cd $python_control_flow_owd
5+ fi
6+ }
7+
8+ # FIXME put some of the below in a common routine
9+ python_control_flow_owd=$( pwd)
10+ # trap finish EXIT
11+
12+ cd $( dirname ${BASH_SOURCE[0]} )
13+ if ! source ./pyenv-3.8-3.10-versions ; then
14+ exit $?
15+ fi
16+
17+ . ./setup-python-3.8.sh
18+
19+ cd ..
20+ for version in $PYVERSIONS ; do
21+ if ! pyenv local $version ; then
22+ exit $?
23+ fi
24+ python --version
25+ make clean && pip install -e .
26+ if ! make check; then
27+ exit $?
28+ fi
29+ echo === $version ===
30+ done
You can’t perform that action at this time.
0 commit comments