summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
diff options
context:
space:
mode:
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