mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
test_get_makefile_filename() is not compatible with Windows.
This commit is contained in:
parent
ebbef6fef2
commit
0646b4bb77
1 changed files with 2 additions and 0 deletions
|
|
@ -234,6 +234,8 @@ class TestSysConfig(unittest.TestCase):
|
|||
config_h = sysconfig.get_config_h_filename()
|
||||
self.assertTrue(os.path.isfile(config_h), config_h)
|
||||
|
||||
@unittest.skipIf(sys.platform.startswith('win'),
|
||||
'Test is not Windows compatible')
|
||||
def test_get_makefile_filename(self):
|
||||
makefile = sysconfig.get_makefile_filename()
|
||||
self.assertTrue(os.path.isfile(makefile), makefile)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue