From 9e94ce58d13ddb0974ccab0ab04ddefe85f1282d Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 22 Jul 2025 14:41:41 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/json_to_md.py b/json_to_md.py index 367c445..6a250d4 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -348,9 +348,9 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path, exit_code): full_banner = ( banner + "
\n📋 Short test summary info\n\n" + - "```python\n" + "".join(short_summary_lines) + "```\n
\n\n" + + "~~~~python\n" + "".join(short_summary_lines) + "~~~~\n\n\n" + "
\n🪵 Full raw pytest log\n\n" + - "```python\n" + "".join(log_lines) + "```\n
\n\n" + + "~~~~python\n" + "".join(log_lines) + "~~~~\n\n\n" + "---\n\n" )