(self)
| 99 | py_compile.compile(self.source_path, os.devnull) |
| 100 | |
| 101 | def test_cache_path(self): |
| 102 | py_compile.compile(self.source_path) |
| 103 | self.assertTrue(os.path.exists(self.cache_path)) |
| 104 | |
| 105 | def test_cwd(self): |
| 106 | with os_helper.change_cwd(self.directory): |
nothing calls this directly
no test coverage detected