Compare commits

...

1 Commits

Author SHA1 Message Date
core-devops 35801c63d2 fix(ci): satisfy org helpers staticcheck
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Blocked by required conditions
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Blocked by required conditions
Harness Replays / Harness Replays (pull_request) Blocked by required conditions
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 48s
CI / Detect changes (pull_request) Successful in 2m19s
E2E API Smoke Test / detect-changes (pull_request) Successful in 2m5s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 34s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m44s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 1m32s
qa-review / approved (pull_request) Failing after 42s
security-review / approved (pull_request) Failing after 41s
CI / Python Lint & Test (pull_request) Successful in 8m3s
sop-tier-check / tier-check (pull_request) Successful in 16s
gate-check-v3 / gate-check (pull_request) Successful in 27s
CI / Platform (Go) (pull_request) Failing after 13m20s
CI / Canvas (Next.js) (pull_request) Failing after 13m13s
CI / Shellcheck (E2E scripts) (pull_request) Failing after 13m9s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Failing after 12m10s
Handlers Postgres Integration / detect-changes (pull_request) Failing after 12m4s
Harness Replays / detect-changes (pull_request) Failing after 11m57s
CI / all-required (pull_request) Failing after 13m15s
CI / Canvas Deploy Reminder (pull_request) Has been skipped
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 8s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 1m52s
sop-checklist / all-items-acked (pull_request) [info tier:low] acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4
2026-05-14 17:13:56 -07:00
@@ -287,7 +287,7 @@ func TestRenderCategoryRoutingYAML_StableOrdering(t *testing.T) {
if ai <= 0 || zi <= 0 || mi <= 0 {
t.Fatalf("could not locate all keys in output: %s", out)
}
if !(ai < mi && mi < zi) {
if ai >= mi || mi >= zi {
t.Errorf("keys not sorted: alpha=%d middle=%d zebra=%d, output:\n%s", ai, mi, zi, out)
}
}