20 lines
206 B
Bash
20 lines
206 B
Bash
#!/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
|
|
set +x
|
|
set +e
|