13 lines
120 B
Bash
13 lines
120 B
Bash
|
#!/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
|