diff --git a/json_to_md.py b/json_to_md.py
index 130e8fce..ac1e7b68 100644
--- a/json_to_md.py
+++ b/json_to_md.py
@@ -248,7 +248,7 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path):
if exit_code == 2:
banner = (
"⚠️ **Test execution interrupted**\n\n"
- "> The test run was manually interrupted (e.g. via Ctrl+C).\n\n"
+ "> The test run was interrupted by the user (reasons : KeyboardInterrupt, ...).\n\n"
)
elif exit_code == 3:
banner = (
@@ -262,7 +262,7 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path):
)
elif exit_code == 5:
banner = (
- "ℹ️ **No tests were collected**\n\n"
+ "❗ **No tests were collected**\n\n"
"> Pytest did not find any tests to run.\n\n"
)
else:
@@ -300,7 +300,7 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path):
"\n📋 Short test summary info
\n\n" +
"```\n" + "".join(short_summary_lines) + "```\n \n\n" +
"\n🪵 Full raw pytest log
\n\n" +
- "```\n" + "".join(log_lines[-500:]) + "```\n \n\n" +
+ "```\n" + "".join(log_lines) + "```\n\n\n" +
"---\n\n"
)