(self)
| 71 | class CMakeTestCase(unittest.TestCase): |
| 72 | |
| 73 | def tearDown(self) -> None: |
| 74 | super().tearDown() |
| 75 | |
| 76 | if self.workspace and not _keep_workspace(): |
| 77 | shutil.rmtree(self.workspace) |
| 78 | self.assertFalse(os.path.exists(self.workspace)) |
| 79 | |
| 80 | def create_workspace(self, tree: Dict[Any, Any]) -> None: |
| 81 | self.workspace = tempfile.mkdtemp() |
nothing calls this directly
no test coverage detected