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 20, 2024
1 parent b6312de commit 7d2bc7b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/qase-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:

- name: Fetch changed files
run: |
echo $(pwd)
files=($(git diff --name-only HEAD HEAD~60))
echo ${files[@]}
echo "files=${files[@]}" >> $GITHUB_ENV
Expand All @@ -26,13 +25,11 @@ jobs:
files: ${{ env.files }}
run: |
test_cases=()
echo "files = ${files[@]}"
files=(${files})
for file in "${files[@]}"; do
echo "file = $file"
if [[ "${file}" == *"/manual/"* ]] && [[ "${file}" != *"_index"* ]]; then
test_case=$(echo "${file#*manual/}")
test_cases+=("test_case")
test_cases+=("${test_case}")
fi
done
echo "collected test cases: ${test_cases[@]}"
Expand Down

0 comments on commit 7d2bc7b

Please sign in to comment.