Adds cury braces into tests variable

pull/7258/head
gindibay 2023-10-13 13:22:09 +03:00
parent a150de0c9f
commit 38f1cff9bd
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ jobs:
- name: Run minimal tests
run: |-
tests="${{ needs.test-flakyness-pre.outputs.tests }}"
IFS=',' read -ra tests_array <<< "$tests"
IFS=',' read -ra tests_array <<< "${tests}"
for test in "${tests_array[@]}"
do
test_name=$(echo "${test}" | sed -r "s/.+\/(.+)\..+/\1/")