25365bbd7894fb5de198ca1aa120f87ae76a89dc
[python_utils.git] / tests / run_all_tests.sh
1 #!/bin/bash
2
3 for doctest in $(grep -l doctest ../*.py); do
4     echo "------------------------- ${doctest} -------------------------"
5     python3 ${doctest}
6 done
7
8 for test in $(ls *_test.py); do
9     if [ "${test}" != "parallelize_test.py" ]; then
10         echo "------------------------- ${test} -------------------------"
11         ${test}
12     fi
13 done