From 709370b2198e09f1dbe195fe8813602a3125b7f6 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 8 Sep 2021 23:29:05 -0700 Subject: Add doctests to some of this stuff. --- tests/run_all_tests.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/run_all_tests.sh') diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh index c2f9f93..25365bb 100755 --- a/tests/run_all_tests.sh +++ b/tests/run_all_tests.sh @@ -1,5 +1,10 @@ #!/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} -------------------------" -- cgit v1.3