(path)
| 83 | |
| 84 | |
| 85 | def _get_sections_set(path): |
| 86 | sections = set() |
| 87 | for file in os.listdir(path): |
| 88 | p = os.path.join(path, file) |
| 89 | if os.path.isfile(p) and file.endswith(".mwm"): |
| 90 | sections.update(read_sections(p).keys()) |
| 91 | return sections |
| 92 | |
| 93 | |
| 94 | def get_sections_size_check_set(old_path: str, new_path: str) -> check.CompareCheckSet: |
no test coverage detected