M44: harden release integrity and assurance
MobilityOps acceptance / backend (push) Failing after 20s
MobilityOps acceptance / frontend (push) Successful in 26s
MobilityOps acceptance / e2e (push) Skipped

This commit is contained in:
NuklearRabbit
2026-08-21 18:32:02 +02:00
parent 9e4fca5708
commit acd8b82b09
55 changed files with 1081 additions and 335 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env python3
"""Regenerate the deterministic checked-in FastAPI OpenAPI contract."""
from pathlib import Path
import yaml
from app.main import app
target = Path(__file__).resolve().parents[1] / "contracts/openapi.yaml"
target.write_text(
yaml.safe_dump(app.openapi(), sort_keys=False, allow_unicode=True),
encoding="utf-8",
)
print(target)