Update json_to_md.py

This commit is contained in:
2025-07-22 14:41:41 +02:00
parent bc9852b36b
commit 9e94ce58d1
+2 -2
View File
@@ -348,9 +348,9 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path, exit_code):
full_banner = (
banner +
"<details>\n<summary>📋 Short test summary info</summary>\n\n" +
"```python\n" + "".join(short_summary_lines) + "```\n</details>\n\n" +
"~~~~python\n" + "".join(short_summary_lines) + "~~~~\n</details>\n\n" +
"<details>\n<summary>🪵 Full raw pytest log</summary>\n\n" +
"```python\n" + "".join(log_lines) + "```\n</details>\n\n" +
"~~~~python\n" + "".join(log_lines) + "~~~~\n</details>\n\n" +
"---\n\n"
)