(self)
| 125 | @unittest.skipIf(sys.implementation.cache_tag is None, |
| 126 | 'requires sys.implementation.cache_tag is not None') |
| 127 | def test_cache_path(self): |
| 128 | py_compile.compile(self.source_path) |
| 129 | self.assert_cache_path_exists(True) |
| 130 | |
| 131 | def test_cwd(self): |
| 132 | with os_helper.change_cwd(self.directory): |
nothing calls this directly
no test coverage detected