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

This commit is contained in:
2025-07-19 19:17:25 +02:00
parent 980a4361b0
commit ac8d53e375
+1 -1
View File
@@ -131,7 +131,7 @@ def make_test_block(test, status, emoji, level, runtime_params):
body += f"- **{phase.capitalize()} Phase**\n"
for field, value in test[phase].items():
block = stringify(value)
body += f" - **{field}:**\n\n```python\n{block}\n```\n\n"
body += f" **{field}:**\n\n```python\n{block}\n```\n\n"
# Formatage final avec indentation cohérente
body_content = "\n".join(f" {line}" for line in body.strip().splitlines())