eris/test-all
2015-12-14 18:03:11 +00:00

8 lines
102 B
Bash
Executable file

#!/bin/bash
for test in *_test.py; do
echo "Testing $test ..."
./${test} 2>&1
echo
done