erc20-demurrage-token/python/run_tests.sh

15 lines
219 B
Bash
Raw Permalink Normal View History

2021-07-04 12:10:01 +02:00
#!/bin/bash
set -a
2021-07-04 12:10:01 +02:00
set -e
set -x
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
>&2 echo using pythonpath $PYTHONPATH
2023-02-10 17:19:03 +01:00
for f in `ls tests/test_*.py`; do
python $f
2021-07-04 12:10:01 +02:00
done
set +x
set +e
set +a