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 d1aa621 commit 089d152Copy full SHA for 089d152
1 file changed
.github/workflows/experiment.yaml
@@ -73,12 +73,8 @@ jobs:
73
echo "=========================================================="
74
cd "$pkg"
75
76
- # NO_COLOR=1 and anchored regex prevents the docstring bug
77
- if NO_COLOR=1 python -m nox -l | grep -qE "^\s*(\*|-)\s+${SESSION}\b"; then
78
- python -m nox -s "${SESSION}" || FAILED=1
79
- else
80
- echo "⏭️ Session '${SESSION}' not defined for $pkg. Safely skipping."
81
- fi
+ # Run unconditionally. If it doesn't exist, Nox will throw an error.
+ python -m nox -s "${SESSION}" || FAILED=1
82
83
cd "$GITHUB_WORKSPACE"
84
done
0 commit comments