Improve testrunner

This commit is contained in:
nolash 2021-10-24 15:59:16 +02:00
parent 8dd4de4e50
commit 0053a1fc71
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 2 additions and 0 deletions

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