Skip to content

Commit

Permalink
include go tests in search regex
Browse files Browse the repository at this point in the history
  • Loading branch information
tpashkin committed Jan 2, 2024
1 parent e5aedfa commit f80bccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/storage/core/tools/ci/runner/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit f80bccf

Please sign in to comment.