(self, path)
| 74 | return os.fspath(self.BASE_PATH / path) |
| 75 | |
| 76 | def read(self, path): |
| 77 | with open(self.path(path), 'r') as fp: |
| 78 | return fp.read() |
| 79 | |
| 80 | def scan_test_file(self, name, decode=True, args=None): |
| 81 | if name.startswith("mirror://"): |
no test coverage detected