fix(reboot): project runtime service green readback
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Failing after 1m27s
CD Pipeline / build-and-deploy (push) Has been skipped
CD Pipeline / post-deploy-checks (push) Has been skipped

This commit is contained in:
Your Name
2026-07-03 03:16:38 +08:00
parent c36a65ecfb
commit 2bc73325a4
8 changed files with 211 additions and 53 deletions

View File

@@ -26,6 +26,11 @@ def test_post_start_self_checks_can_run_locally_on_110() -> None:
def test_runner_pressure_is_capacity_evidence_after_routes_recover() -> None:
text = SCRIPT.read_text(encoding="utf-8")
assert "RUN_RUNNER_GUARD=1" in text
assert "--skip-runner-guard" in text
assert 'RUN_RUNNER_GUARD=0' in text
assert 'if [[ "$RUN_RUNNER_GUARD" -eq 1 ]]; then' in text
assert "110 runner fail-closed guard skipped by caller" in text
assert "service_route_recovered()" in text
assert "capacity_or_runner_issue()" in text
assert "cold-start non-route blockers retained as capacity/freshness evidence" in text