summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-07-09 18:31:37 -0700
committerScott Gasch <[email protected]>2021-07-09 18:31:37 -0700
commit7d7a3ce0abb26766e82c6dfed8a196baa63b736a (patch)
treebb4c0bd76b52255f46a6292f5450d96391f9d5c8
parent09e6d10face80d98a4578ff54192b5c8bec007d7 (diff)
Script to run tests.
-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