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

This commit is contained in:
2025-07-19 18:46:12 +02:00
parent b30d9eccad
commit bf33c62f2d
+1 -1
View File
@@ -123,7 +123,7 @@ def make_test_block(test, status, emoji, level, runtime_params):
skip_keys = {"nodeid"}
for phase in [k for k in test if isinstance(test[k], dict) and k not in skip_keys]:
body.append(f" **🔧 {phase.capitalize()} Phase**")
body.append(f" **🔧 {phase.capitalize()} Phase**\n")
for field, value in test[phase].items():
body.append(f" **{field}:**")
body.append(" ```python")