chainlib-eth/run_tests.sh

15 lines
214 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2021-09-13 16:42:00 +02:00
set -a
set -e
set -x
2021-09-13 16:42:00 +02:00
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
2021-09-13 16:42:00 +02:00
set +a