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

This commit is contained in:
2025-07-17 13:09:27 +02:00
parent f7ed94d770
commit de2a6d4a7f
+1 -3
View File
@@ -51,9 +51,6 @@ def pytest_sessionfinish(session, exitstatus):
json.dump(all_data, f, indent=2)
'''
# conftest_paramdump.py
import json
import os
def safe_serialize(obj):
"""Rend n'importe quoi JSON-serializable."""
@@ -99,3 +96,4 @@ def pytest_sessionfinish(session, exitstatus):
os.makedirs("ci-reports/markdown", exist_ok=True)
with open("ci-reports/markdown/runtime_params.json", "w") as f:
json.dump(runtime_params, f, indent=2)