Improve test runner

This commit is contained in:
nolash
2021-10-24 16:13:45 +02:00
parent fde30511de
commit edb35b3ead

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