Adminstrivia

This commit is contained in:
rocky
2017-10-11 21:51:01 -04:00
parent 9a2534556c
commit e0def48020
5 changed files with 54 additions and 23 deletions

View File

@@ -1,4 +1,12 @@
#!/bin/bash
function finish {
cd $owd
}
# FIXME put some of the below in a common routine
owd=$(pwd)
trap finish EXIT
cd $(dirname ${BASH_SOURCE[0]})
if ! source ./pyenv-newer-versions ; then
exit $?
@@ -11,7 +19,7 @@ for version in $PYVERSIONS; do
if ! pyenv local $version ; then
exit $?
fi
make clean && python setup.py develop
make clean && pip install -e .
if ! make check; then
exit $?
fi