diff --git a/qc_baselib/result.py b/qc_baselib/result.py index 135133b..92e095d 100644 --- a/qc_baselib/result.py +++ b/qc_baselib/result.py @@ -119,13 +119,12 @@ def write_markdown_doc(self, markdown_file_path: str) -> None: bundle_text += f"# Checker bundle: {bundle.name}\n\n" bundle_text += f"* Build version: {bundle.version}\n" bundle_text += f"* Description: {bundle.description}\n" - bundle_text += f"* Summary: {bundle.summary}\n" bundle_text += "\n" bundle_text += f"## Parameters\n\n" param_text = "" for param in bundle.params: - param_text += f"* {param.name}: \n" + param_text += f"* {param.name} \n" if len(param_text) == 0: param_text += f"* None\n" @@ -139,7 +138,6 @@ def write_markdown_doc(self, markdown_file_path: str) -> None: checker_text += "\n" checker_text += f"### {checker.checker_id}\n\n" checker_text += f"* Description: {checker.description}\n" - checker_text += f"* Summary: {checker.summary}\n" checker_text += f"* Addressed rules:\n" rule_text = "" diff --git a/tests/data/result_markdown_docs.md b/tests/data/result_markdown_docs.md index f9caaf8..83b8881 100644 --- a/tests/data/result_markdown_docs.md +++ b/tests/data/result_markdown_docs.md @@ -10,7 +10,6 @@ * Build version: 0.0.1 * Description: Example checker bundle -* Summary: Tested example checkers ## Parameters @@ -21,6 +20,5 @@ ### TestChecker * Description: Test checker -* Summary: Executed evaluation * Addressed rules: * test.com:qc:1.0.0:qwerty.qwerty