[WBS-7.7][WBS-7.1] Hardening: Upgrade to MudBlazor 9.0.0 and establish warning-free E2E test harness and dev auth fallback
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 7s
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 12s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Deploy to Production / Build & Deploy to Production (push) Successful in 2m47s

This commit is contained in:
2026-07-07 18:06:54 +09:00
parent 6bde9a9172
commit 3ec0941f50
12 changed files with 152 additions and 32 deletions
@@ -105,3 +105,33 @@ def test_build_calibration_decision_draft(tmp_path):
assert payload["summary"]["REJECT"] >= 0
assert "Calibration Decision Draft" in text
assert "Decision Table" in text
if __name__ == "__main__":
print("[START] Running Calibration Priority Tests directly...")
# Mock tmp_path
class TmpPathMock:
def __init__(self, p):
self.p = Path(p)
def __truediv__(self, other):
return self.p / other
tmp = TmpPathMock("Temp")
print("1/5 Running test_build_calibration_priority_and_change_ledger...")
test_build_calibration_priority_and_change_ledger(tmp)
print("2/5 Running test_calibration_backlog_workflow_and_script_exist...")
test_calibration_backlog_workflow_and_script_exist()
print("3/5 Running test_build_calibration_review_report...")
test_build_calibration_review_report(tmp)
print("4/5 Running test_build_calibration_approval_list...")
test_build_calibration_approval_list(tmp)
print("5/5 Running test_build_calibration_decision_draft...")
test_build_calibration_decision_draft(tmp)
print("[SUCCESS] ALL TESTS PASSED SUCCESSFULLY! (CALIBRATION_PRIORITY_OK)")