We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eea778 commit 9c49a81Copy full SHA for 9c49a81
1 file changed
test/runner
@@ -9,7 +9,7 @@ function log() {
9
}
10
11
error=0
12
-for test in ${0%/*}/{,**/}*_test*.sh; do
+for test in $(find "${0%/*}" | grep -E '_(test|tests).sh'); do
13
log "Running $test ..."
14
$test || error=1
15
echo
0 commit comments