We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b34c5ff commit a2b1599Copy full SHA for a2b1599
.github/workflows/code-test.yaml
@@ -30,7 +30,7 @@ jobs:
30
id: set-projects
31
run: |
32
# 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]')
+ 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]')
34
echo "projects=$projects" >> "$GITHUB_OUTPUT"
35
python:
36
needs: [discover]
0 commit comments