eth-erc20/python/run_tests.sh

15 lines
157 B
Bash
Raw Permalink Normal View History

2021-06-28 09:08:56 +02:00
#!/bin/bash
2023-02-21 21:28:25 +01:00
export PYTHONPATH=${PYTHONPATH}:.
2021-06-28 09:08:56 +02:00
set -e
set -x
for f in `ls tests/*.py`; do
python $f
if [ $? -gt 0 ]; then
exit 1
fi
done
set +x
set +e