eris/test-all

11 lines
219 B
Text
Raw Normal View History

2015-12-14 18:03:11 +00:00
#!/bin/bash
2016-01-21 23:22:42 +00:00
CODEBASE_PATH=$(dirname $0)
sudo -p "Some tests need sudo to run... [sudo] password for %u: " true
for test in ${CODEBASE_PATH}/*_test.py; do
2015-12-14 18:03:11 +00:00
echo "Testing $test ..."
./${test} 2>&1
echo
done