Skip to content

Commit 1eb2930

Browse files
author
Katharine Hyatt
committed
Try filtering
1 parent 9aeea31 commit 1eb2930

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/Tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ jobs:
3333
| xargs -I{} basename {} | sort \
3434
| jq -R -s -c '[split("\n")[] | select(length > 0)]')
3535
36-
echo "groups=${groups}" >> "$GITHUB_OUTPUT"
36+
# Filter testsuite from groups
37+
filtered_groups = []
38+
for test_name in "${groups[@]}"; do
39+
test_name != "testsuite" && filtered_groups += (test_name)
40+
done
41+
42+
echo "groups=${filtered_groups}" >> "$GITHUB_OUTPUT"
3743
3844
# Draft PR: only run ubuntu-latest + version=1
3945
if [[ "${{ github.event_name }}" == "pull_request" && "${{ github.event.pull_request.draft }}" == "true" ]]; then

0 commit comments

Comments
 (0)