We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee180a7 + c76269b commit 5229dadCopy full SHA for 5229dad
distutils/tests/test_sysconfig.py
@@ -40,6 +40,8 @@ def test_get_config_h_filename(self):
40
41
@unittest.skipIf(sys.platform == 'win32',
42
'Makefile only exists on Unix like systems')
43
+ @unittest.skipIf(sys.implementation.name != 'cpython',
44
+ 'Makefile only exists in CPython')
45
def test_get_makefile_filename(self):
46
makefile = sysconfig.get_makefile_filename()
47
self.assertTrue(os.path.isfile(makefile), makefile)
0 commit comments