Update conftest.py
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 26s

This commit is contained in:
2025-07-17 10:44:32 +02:00
parent 1c674c9aa4
commit 52e786e990
+3 -2
View File
@@ -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)