diff options
Diffstat (limited to 'tests/run_all_tests.sh')
| -rwxr-xr-x | tests/run_all_tests.sh | 5 |
1 files changed, 5 insertions, 0 deletions
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} -------------------------" |
