foo
This commit is contained in:
parent
e3af4bf2f4
commit
bfd5d73dff
6 changed files with 760 additions and 61 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue