(self, a_path: ScanLocation, b_path: ScanLocation)
| 233 | diff.add_detections(a_detections, b_detections) |
| 234 | |
| 235 | def _diff_dirs(self, a_path: ScanLocation, b_path: ScanLocation): |
| 236 | a_files = list(a_path.list_recursive()) |
| 237 | b_files = list(b_path.list_recursive()) |
| 238 | self._diff_files(a_files=a_files, b_files=b_files) |
| 239 | |
| 240 | def _diff_files(self, a_files: List[ScanLocation], b_files: List[ScanLocation]): |
| 241 | closure = FileMatcher(left_files=a_files, right_files=b_files).get_closure() |
no test coverage detected