summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/run_all_tests.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh
new file mode 100755
index 0000000..ecb3648
--- /dev/null
+++ b/tests/run_all_tests.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+for test in $(ls *_test.py); do
+ echo "------------------------------ ${test} ------------------------------"
+ ${test}
+done