summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-09 16:42:13 -0700
committerScott Gasch <[email protected]>2021-09-09 16:42:13 -0700
commit6f132c0342ab7aa438ed88d7c5f987cb52d8ca05 (patch)
tree80cf90e7d8ae2ea9d6d191bb78650030fef8cb2e /tests/run_all_tests.sh
parent709370b2198e09f1dbe195fe8813602a3125b7f6 (diff)
Update tests / test harness.
Diffstat (limited to 'tests/run_all_tests.sh')
-rwxr-xr-xtests/run_all_tests.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh
deleted file mode 100755
index 25365bb..0000000
--- a/tests/run_all_tests.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-for doctest in $(grep -l doctest ../*.py); do
- echo "------------------------- ${doctest} -------------------------"
- python3 ${doctest}
-done
-
-for test in $(ls *_test.py); do
- if [ "${test}" != "parallelize_test.py" ]; then
- echo "------------------------- ${test} -------------------------"
- ${test}
- fi
-done