From 6ee6055a301482f359b65154dce2cdb06cb5f23f Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 9 Dec 2023 15:17:52 +0100 Subject: [PATCH] update interface of merge_html_reports --- pytest_abra/coordinator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pytest_abra/coordinator.py b/pytest_abra/coordinator.py index 70706e8..52f5e77 100644 --- a/pytest_abra/coordinator.py +++ b/pytest_abra/coordinator.py @@ -58,10 +58,10 @@ class Coordinator: def combine_html(self) -> None: """combines all generated pytest html reports into one""" - in_path = str(self.DIR.RECORDS / "html") - out_path = str(self.DIR.RECORDS / "full-report.html") + in_dir_path = str(self.DIR.RECORDS / "html") + out_file_path = str(self.DIR.RECORDS / "full-report.html") title = "combined.html" - merge_html_reports(in_path, out_path, title) + merge_html_reports(in_dir_path, out_file_path, title) def collect_traces(self): """moves all traces into SESSION/RECORDS dir