summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
blob: 25365bbd7894fb5de198ca1aa120f87ae76a89dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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