chainsyncer/run_tests.sh

20 lines
206 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
for f in `ls tests/store/*.py`; do
python $f
if [ $? -gt 0 ]; then
exit
fi
done
2021-08-26 10:09:47 +02:00
set +x
set +e