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

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