mirror of
git://holbrook.no/eth-accounts-index
synced 2024-11-05 10:16:47 +01:00
13 lines
122 B
Bash
13 lines
122 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
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
|