(self)
| 136 | self.assert_cache_path_exists(False) |
| 137 | |
| 138 | def test_relative_path(self): |
| 139 | py_compile.compile(os.path.relpath(self.source_path), |
| 140 | os.path.relpath(self.pyc_path)) |
| 141 | self.assertTrue(os.path.exists(self.pyc_path)) |
| 142 | self.assert_cache_path_exists(False) |
| 143 | |
| 144 | @os_helper.skip_if_dac_override |
| 145 | @unittest.skipIf(os.name == 'nt', |
nothing calls this directly
no test coverage detected