This commit is contained in:
Felix Delattre 2026-05-31 15:54:05 +02:00
parent e3af4bf2f4
commit bfd5d73dff
6 changed files with 760 additions and 61 deletions

View file

@ -273,8 +273,13 @@ def run_validation(
}
},
}
out_path = vdir / "gap_validation_summary.json"
out_path = vdir / f"gap_validation_summary_{mode}.json"
out_path.write_text(json.dumps(summary, indent=2) + "\n", encoding="utf-8")
if mode == "bti":
# Legacy alias for backward-compatible readers (webapp, older scripts).
(vdir / "gap_validation_summary.json").write_text(
json.dumps(summary, indent=2) + "\n", encoding="utf-8"
)
return out_path