Script to run tests.
authorScott Gasch <[email protected]>
Sat, 10 Jul 2021 01:31:37 +0000 (18:31 -0700)
committerScott Gasch <[email protected]>
Sat, 10 Jul 2021 01:31:37 +0000 (18:31 -0700)
tests/run_all_tests.sh [new file with mode: 0755]

diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh
new file mode 100755 (executable)
index 0000000..ecb3648
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+for test in $(ls *_test.py); do
+    echo "------------------------------ ${test} ------------------------------"
+    ${test}
+done