From 52e786e9904e0937f1759773d9ee7bbf3b706ceb Mon Sep 17 00:00:00 2001 From: tligui_y Date: Thu, 17 Jul 2025 10:44:32 +0200 Subject: [PATCH] Update conftest.py --- conftest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conftest.py b/conftest.py index eafbd557..46328be6 100644 --- a/conftest.py +++ b/conftest.py @@ -78,5 +78,6 @@ def pytest_runtest_makereport(item, call): def pytest_sessionfinish(session, exitstatus): os.makedirs("ci-reports/markdown", exist_ok=True) - with open("ci-reports/markdown/runtime_all_brut.json", "w") as f: - json.dump(runtime_data, f, indent=2, ensure_ascii=False) + print("✅ Dumping runtime_params.json...") + with open("ci-reports/markdown/runtime_params.json", "w") as f: + json.dump(runtime_params, f, indent=2)