From ceea074d96a29de95ad2597e8b6fdda6c8cbec37 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 15 Jul 2025 15:01:27 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/json_to_md.py b/json_to_md.py index 6dd0c3cc..9ef3921a 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -238,6 +238,8 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path): "> Unexpected result during test execution.\n\n" ) + ''' + try: with open(log_path, "r") as lf: log_lines = lf.readlines() @@ -278,7 +280,7 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path): except Exception as e: #print(f"❌ Failed to update markdown report: {e}") return - + ''' def main(): parser = argparse.ArgumentParser(description="Convert JSON test results to Markdown.") parser.add_argument("--input", required=True, help="Path to pytest JSON file")