diff options
| author | Scott Gasch <[email protected]> | 2021-07-09 18:31:37 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-09 18:31:37 -0700 |
| commit | 7d7a3ce0abb26766e82c6dfed8a196baa63b736a (patch) | |
| tree | bb4c0bd76b52255f46a6292f5450d96391f9d5c8 /tests | |
| parent | 09e6d10face80d98a4578ff54192b5c8bec007d7 (diff) | |
Script to run tests.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run_all_tests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh new file mode 100755 index 0000000..ecb3648 --- /dev/null +++ b/tests/run_all_tests.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +for test in $(ls *_test.py); do + echo "------------------------------ ${test} ------------------------------" + ${test} +done |
