From 701ef35c032994a2b1eb4dab694d84fe2da7d898 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 15 Jul 2025 11:55:50 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/json_to_md.py b/json_to_md.py index 28bccce6..a78fbad1 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -70,7 +70,8 @@ def load_allure_metadata(allure_test_cases_dir): except Exception as e: short_summary = traceback.format_exception_only(type(e), e)[-1].strip() print(f"Allure file: {file} failed ❌ (reason: {short_summary})") - return allure_data + + return allure_data def json_to_md_nested(json_path, md_path, allure_dir=None):