Update run_tests.sh

This commit is contained in:
Daven Savoie 2021-09-15 15:52:33 +00:00
parent 299312eb2f
commit 67ba77c83f
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@
set -e
set -x
#export PYTHONPATH=${PYTHONPATH:.}
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
>&2 echo using pythonpath $PYTHONPATH
for f in `ls tests/*.py`; do
python $f
done