funga/run_tests.sh

13 lines
200 B
Bash
Raw Normal View History

2021-09-06 15:48:06 +02:00
#!/bin/bash
set -e
set -x
2021-09-15 17:52:33 +02:00
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
>&2 echo using pythonpath $PYTHONPATH
2021-09-06 15:48:06 +02:00
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e