test_get_makefile_filename() is not compatible with Windows.

This commit is contained in:
Barry Warsaw 2010-09-20 19:12:07 +00:00
parent ebbef6fef2
commit 0646b4bb77
1 changed files with 2 additions and 0 deletions

View File

@ -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)