test(coverage): ratchet autogen branch coverage gate#11
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7e929035e3
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - name: Emit branch coverage telemetry | ||
| if: always() | ||
| run: | | ||
| python - <<'PY' |
There was a problem hiding this comment.
Use a cross-platform shell for telemetry
This job still runs on windows-latest, and this step does not override the default shell; GitHub's workflow syntax docs state that an unspecified Windows run step uses pwsh, while this python - <<'PY' heredoc is Bash syntax, so the Windows matrix leg will fail parsing the telemetry step even when tests pass. Set shell: bash for this step or use shell: python/a script file instead. See GitHub docs: https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
Useful? React with 👍 / 👎.
Use a cross-platform Python shell for coverage telemetry and align maf setup tests with the current tool surface and fallback helper access.
Summary
Implements the Phase 26-02 coverage ratchet for autogen and records the verified local gate results.
Changes
Why
Phase 26-02 requires a measurable branch coverage ratchet backed by repo-declared dependencies and local verification evidence.
Validation
Risks
Related
Reviewer notes
Start with requirements.txt and .github/workflows/ci.yml, then review the added routing and maf setup tests.