chainsyncer/run_tests.sh

13 lines
120 B
Bash
Raw Normal View History

2021-08-26 10:09:47 +02:00
#!/bin/bash
set -e
set -x
for f in `ls tests/*.py`; do
python $f
if [ $? -gt 0 ]; then
exit
fi
done
set +x
set +e