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

for test in $(ls *_test.py); do
    echo "------------------------- ${test} -------------------------"
    ${test}
done