Add testrunner script

This commit is contained in:
lash
2022-03-14 21:41:00 +00:00
parent d128907bc2
commit e01fa4c54a

15
run_tests.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set +e
set +x
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
exit 1
fi
done
set -x
set -e