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")