From 0646b4bb77a5955407e4174e9fac56447dc958f7 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 20 Sep 2010 19:12:07 +0000 Subject: test_get_makefile_filename() is not compatible with Windows. --- Lib/test/test_sysconfig.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py index e509989..241f365 100644 --- a/Lib/test/test_sysconfig.py +++ b/Lib/test/test_sysconfig.py @@ -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) -- cgit v0.12