okota/python/run_tests.sh

15 lines
214 B
Bash
Raw Permalink Normal View History

2021-11-13 07:13:27 +01:00
#!/bin/bash
set -a
set -e
set -x
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
>&2 echo using pythonpath $PYTHONPATH
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e
set +a