projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09e6d10
)
Script to run tests.
author
Scott Gasch
<
[email protected]
>
Sat, 10 Jul 2021 01:31:37 +0000
(18:31 -0700)
committer
Scott Gasch
<
[email protected]
>
Sat, 10 Jul 2021 01:31:37 +0000
(18:31 -0700)
tests/run_all_tests.sh
[new file with mode: 0755]
patch
|
blob
diff --git a/tests/run_all_tests.sh
b/tests/run_all_tests.sh
new file mode 100755
(executable)
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