Skip to content

Commit 0646b4b

Browse files
committed
test_get_makefile_filename() is not compatible with Windows.
1 parent ebbef6f commit 0646b4b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/test_sysconfig.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ def test_get_config_h_filename(self):
234234
config_h = sysconfig.get_config_h_filename()
235235
self.assertTrue(os.path.isfile(config_h), config_h)
236236

237+
@unittest.skipIf(sys.platform.startswith('win'),
238+
'Test is not Windows compatible')
237239
def test_get_makefile_filename(self):
238240
makefile = sysconfig.get_makefile_filename()
239241
self.assertTrue(os.path.isfile(makefile), makefile)

0 commit comments

Comments
 (0)