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)