From f80bccf5e4adabce0d02fa9037ae8e1eb5941612 Mon Sep 17 00:00:00 2001 From: Taras Pashkin Date: Tue, 2 Jan 2024 19:19:58 +0200 Subject: [PATCH] include go tests in search regex --- cloud/storage/core/tools/ci/runner/run_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/storage/core/tools/ci/runner/run_all.sh b/cloud/storage/core/tools/ci/runner/run_all.sh index b0f7813cb37..115a37c3349 100755 --- a/cloud/storage/core/tools/ci/runner/run_all.sh +++ b/cloud/storage/core/tools/ci/runner/run_all.sh @@ -22,7 +22,7 @@ rm -rf "$logs_dir" && mkdir -p "$logs_dir" lineArr=() -while IFS='' read -r line; do lineArr+=("$line"); done < <((grep -E -lir --include=ya.make "(PY3TEST|UNITTEST)" "$nbspath/cloud")) +while IFS='' read -r line; do lineArr+=("$line"); done < <((grep -E -lir --include=ya.make "(PY3TEST|UNITTEST|GO_X?TEST_SRCS)" "$nbspath/cloud")) for line in "${lineArr[@]}"; do echo "run test " "$line" ${scripts}/run_test.sh $nbspath "$line" "$logs_dir"