Skip to content

Commit a2b1599

Browse files
committed
fix: don't attempt to run non-existent tests
1 parent b34c5ff commit a2b1599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/code-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
id: set-projects
3131
run: |
3232
# grabs all paths with pyproject.toml, snips the 2nd dir, grabs only unique ones, makes a JSON list
33-
projects=$(find python -mindepth 2 -name pyproject.toml | awk -F/ '{print $2}' | sort -u | jq -R -s -c 'split("\n")[:-1]')
33+
projects=$(find python -mindepth 2 ! -wholename 'python/understack-tests/*' -name pyproject.toml | awk -F/ '{print $2}' | sort -u | jq -R -s -c 'split("\n")[:-1]')
3434
echo "projects=$projects" >> "$GITHUB_OUTPUT"
3535
python:
3636
needs: [discover]

0 commit comments

Comments
 (0)