Update conftest.py
Run Pytest / tests (push) Successful in 25s

This commit is contained in:
2025-07-21 01:10:15 +02:00
parent ee4074083b
commit 898d51cfeb
+2 -1
View File
@@ -1,7 +1,7 @@
# conftest.py
import json
import os
'''
def safe_serialize(obj):
try:
json.dumps(obj)
@@ -107,3 +107,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)
'''