2021-06-28 07:48:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-09-13 16:42:00 +02:00
|
|
|
set -a
|
2021-06-28 07:48:36 +02:00
|
|
|
set -e
|
|
|
|
set -x
|
2021-09-13 16:42:00 +02:00
|
|
|
default_pythonpath=$PYTHONPATH:.
|
|
|
|
export PYTHONPATH=${default_pythonpath:-.}
|
|
|
|
>&2 echo using pythonpath $PYTHONPATH
|
2021-06-28 07:48:36 +02:00
|
|
|
for f in `ls tests/*.py`; do
|
|
|
|
python $f
|
|
|
|
done
|
|
|
|
set +x
|
|
|
|
set +e
|
2021-09-13 16:42:00 +02:00
|
|
|
set +a
|