25 lines
421 B
Bash
Executable File
25 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
rm -rf testdata;
|
|
mkdir testdata;
|
|
ran=0
|
|
|
|
SECONDS=0 ;
|
|
close () {
|
|
rm -rf testdata;
|
|
exit 10;
|
|
}
|
|
|
|
for f in tests/*.py; do
|
|
python3 "$f" || close # if needed
|
|
let "ran++"
|
|
done
|
|
echo "ran $ran unittests. Unittest Time: $SECONDS"
|
|
ran=0;
|
|
|
|
for f in tests/integration-tests/*.py; do
|
|
python3 "$f" || close # if needed
|
|
let "ran++"
|
|
done
|
|
echo "ran $ran integration test tests."
|
|
echo "total test time $SECONDS"
|