funga/run_tests.sh

11 lines
121 B
Bash
Raw Normal View History

2021-09-06 15:48:06 +02:00
#!/bin/bash
set -e
set -x
#export PYTHONPATH=${PYTHONPATH:.}
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e