From f39c6572aadb737f935f672199c7feafd961e0f7 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Fri, 28 Jun 2024 17:57:20 +0200 Subject: [PATCH] add test --- tests/test_cmd_test_reports.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test_cmd_test_reports.py b/tests/test_cmd_test_reports.py index f2bdcd987..bcd58d6c5 100644 --- a/tests/test_cmd_test_reports.py +++ b/tests/test_cmd_test_reports.py @@ -20,3 +20,12 @@ def test_allure(self): assert os.path.exists(results_path) assert os.path.isdir(results_path) assert len(os.listdir(results_path)) + + def test_markdown(self): + with self._isolate() as f: + json_path = os.path.join(TEST_DATA_DIR, "issue381.json") + results_path = os.path.join(f, "markdown_results") + self._check_exit_code(["test_reports", "--test_output_minimal_markdown", results_path, json_path], exit_code=0) + assert os.path.exists(results_path) + assert os.path.isdir(results_path) + assert len(os.listdir(results_path))