Files
karma/scripts/testscript-one-by-one.sh
2020-09-25 19:11:50 +01:00

8 lines
198 B
Bash
Executable File

#!/bin/bash -e
for I in ./cmd/karma/tests/testscript/*.txt ; do
T=`basename "${I}" | cut -d. -f1`
echo ">>> ${T}"
go test -count=1 -timeout=30s -v -run=TestScript/${T} ./cmd/karma
done