From 7d7a3ce0abb26766e82c6dfed8a196baa63b736a Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 9 Jul 2021 18:31:37 -0700 Subject: [PATCH] Script to run tests. --- tests/run_all_tests.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 tests/run_all_tests.sh 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 -- 2.46.0