Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/pr-00-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ jobs:
python-versions: '["3.12", "3.13"]'
coverage: true
coverage-min: "75"
# Coverage was already MEASURED here; only the reporting leg was off, because
# `enable-soft-gate` defaults to false. So the Gate computed a coverage number every
# run and then discarded it -- no trend artifact, no hotspot table, and nothing for
# Maint Coverage Guard to read. Report-only: the soft gate runs coverage_trend.py with
# --soft, which always exits 0, so this cannot fail a PR.
# Measured 78.01% on this repo's own 2026-08-25 Gate payload, against the floor of 75.
enable-soft-gate: true
typecheck: true
format_check: true
pytest_markers: "not nightly" # Skip nightly integration tests
Expand Down
Loading