Update run_tests.sh

This commit is contained in:
Daven Savoie 2021-09-14 18:06:30 +00:00
parent 65ad5b98f9
commit 782377adbb
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
if [ $? -gt 0 ]; then