Commit 0646b4bb authored by Barry Warsaw's avatar Barry Warsaw

test_get_makefile_filename() is not compatible with Windows.

parent ebbef6fe
...@@ -234,6 +234,8 @@ class TestSysConfig(unittest.TestCase): ...@@ -234,6 +234,8 @@ class TestSysConfig(unittest.TestCase):
config_h = sysconfig.get_config_h_filename() config_h = sysconfig.get_config_h_filename()
self.assertTrue(os.path.isfile(config_h), config_h) 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): def test_get_makefile_filename(self):
makefile = sysconfig.get_makefile_filename() makefile = sysconfig.get_makefile_filename()
self.assertTrue(os.path.isfile(makefile), makefile) self.assertTrue(os.path.isfile(makefile), makefile)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment