pytemplate/run_tests.sh

14 lines
210 B
Bash
Raw Permalink Normal View History

2019-07-15 22:22:48 +00:00
#!/bin/bash
ran=0
SECONDS=0 ;
close () {
exit 10;
}
for f in tests/*.py; do
python3 "$f" || close # if needed
let "ran++"
done
echo "ran $ran test files successfully in $SECONDS seconds"
rm -f *.dat