fix(scripts): encode tool_search_livetest2 output as utf-8 (Windows footgun)

check-windows-footguns (blocking CI) flagged a bare Path.write_text() without
encoding= at scripts/tool_search_livetest2.py:190, which uses the platform
locale encoding on Windows. Pin utf-8. Pre-existing on main; unblocks the
required-checks gate for this PR.
This commit is contained in:
Victor Kyriazakos 2026-07-26 20:59:52 +00:00
parent 08d67792ab
commit e286658377
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ def run_one(scenario: Dict[str, Any], mode: str, rep: int, out_dir: Path) -> Dic
"final_response": base._redact_secrets(final_response)[:500],
}
out_path = out_dir / f"{scenario['id']}__{'enabled' if enabled else 'disabled'}__rep{rep}.json"
out_path.write_text(json.dumps(rec, indent=1))
out_path.write_text(json.dumps(rec, indent=1), encoding="utf-8")
shutil.rmtree(Path(os.environ["HERMES_HOME"]).parent, ignore_errors=True)
return rec