(self)
| 1323 | self.reports.file(file, self.modules, type_map, options) |
| 1324 | |
| 1325 | def commit(self) -> None: |
| 1326 | t0 = time.time() |
| 1327 | self.metastore.commit() |
| 1328 | self.add_stats(cache_commit_time=time.time() - t0) |
| 1329 | |
| 1330 | def commit_module(self, meta_file: str) -> None: |
| 1331 | """Commit cache writes for a single module (identified by its meta file path).""" |
no test coverage detected