chainqueue/run_tests.sh
2021-09-08 17:19:30 +02:00

14 lines
157 B
Bash

#!/bin/bash
set +e
set +x
export PYTHONPATH={$PYTHONPATH:-.}
for f in `ls tests/*.py`; do
python $f
if [ $? -gt 0 ]; then
exit 1
fi
done
set -x
set -e