From: Scott Gasch Date: Sat, 10 Jul 2021 01:31:37 +0000 (-0700) Subject: Script to run tests. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=7d7a3ce0abb26766e82c6dfed8a196baa63b736a;p=python_utils.git Script to run tests. --- 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