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

This commit is contained in:
2025-07-16 02:49:14 +02:00
parent 3cb7e4c04f
commit 2eab9dd644
+1 -3
View File
@@ -68,9 +68,7 @@ def make_test_block(test, status, emoji, level):
if value is None:
phase_body += f"- **{field.capitalize()}:** None\n"
else:
details_body = "```\n"
details_body += stringify(value) + "\n"
details_body += "```\n"
details_body = "```\n" + stringify(value) + "\n```"
phase_body += get_details_block(f"📌 {field.capitalize()}", details_body, level+2)
if phase_body:
body_test += f"\n### 🔧 {phase.capitalize()} Phase\n\n" + phase_body