From bf33c62f2d643402fec66d157f6dd9a7fe4db7cb Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sat, 19 Jul 2025 18:46:12 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json_to_md.py b/json_to_md.py index 4f25517a6..7da1259b0 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -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")