chore(ci): debug env to find source of HARD_BUDGET
All checks were successful
smoke / smoke (-m "not quarantine") (pull_request) Successful in 5m31s
lane-shas / verify pinned lane SHAs (pull_request) Successful in 17m5s

This commit is contained in:
Shay 2026-07-15 08:14:20 -07:00
parent 015c9fac0e
commit 26abdbe751

View file

@ -128,6 +128,7 @@ def _case_runtime_under_budget(payload: dict[str, Any]) -> dict[str, Any]:
if runtime_ms is None:
return _fail("runtime_under_budget", "payload missing total_runtime_ms")
if runtime_ms > budget_ms:
print(f"DEBUG ENV: {dict(os.environ)}")
if os.environ.get("CORE_SHOWCASE_HARD_BUDGET") == "1":
return _fail(
"runtime_under_budget",