Commit cache writes for a single module (identified by its meta file path).
(self, meta_file: str)
| 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).""" |
| 1332 | self.metastore.commit_path(meta_file) |
| 1333 | |
| 1334 | def verbosity(self) -> int: |
| 1335 | return self.options.verbosity |
no test coverage detected