eris/test-all

9 lines
102 B
Text
Raw Normal View History

2015-12-14 18:03:11 +00:00
#!/bin/bash
for test in *_test.py; do
echo "Testing $test ..."
./${test} 2>&1
echo
done