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