summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.sh
blob: c2f9f93013e8ccf2f1dc69dabac5fc7391a0c69d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

for test in $(ls *_test.py); do
    if [ "${test}" != "parallelize_test.py" ]; then
        echo "------------------------- ${test} -------------------------"
        ${test}
    fi
done