(self)
| 129 | self.assert_cache_path_exists(True) |
| 130 | |
| 131 | def test_cwd(self): |
| 132 | with os_helper.change_cwd(self.directory): |
| 133 | py_compile.compile(os.path.basename(self.source_path), |
| 134 | os.path.basename(self.pyc_path)) |
| 135 | self.assertTrue(os.path.exists(self.pyc_path)) |
| 136 | self.assert_cache_path_exists(False) |
| 137 | |
| 138 | def test_relative_path(self): |
| 139 | py_compile.compile(os.path.relpath(self.source_path), |
nothing calls this directly
no test coverage detected