Improve testrunner

This commit is contained in:
nolash
2021-10-24 15:59:16 +02:00
parent 8dd4de4e50
commit 0053a1fc71

View File

@@ -2,6 +2,8 @@
set -e
set -x
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
for f in `ls tests/*.py`; do
python $f
if [ $? -gt 0 ]; then