You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|