Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Yang Chiu <[email protected]>
  • Loading branch information
yangchiu committed Aug 19, 2024
1 parent d72ee72 commit 8e998f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/qase-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ jobs:
test_cases: ${{ env.test_cases }}
run: |
test_cases=(${test_cases})
for file_path in "${test_cases}"; do
for file_path in "${test_cases[@]}"; do
test_case_path=$(echo "${file_path#*manual/}")
echo "test_case_path = ${test_case_path}"
IFS='/' read -ra arr <<< "$test_case_path"
parent_suite_id=""
for str in "${arr[@]}"; do
Expand Down Expand Up @@ -85,7 +86,7 @@ jobs:
run: |
test_cases=(${test_cases})
cd docs/content/manual/
for file_path in "${test_cases}"; do
for file_path in "${test_cases[@]}"; do
title=$(grep '^title:' ${file_path} | sed 's/title: "\(.*\)"/\1/')
echo "title = ${title}"
Expand Down

0 comments on commit 8e998f6

Please sign in to comment.