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.
1 parent d77c708 commit a70f3e9Copy full SHA for a70f3e9
Lib/test/test_sysconfig.py
@@ -656,7 +656,7 @@ def test_paths_depend_on_site_initialization(self):
656
657
self.assertNotEqual(site_paths, no_site_paths)
658
659
- @unittest.skipIf(is_wasi, 'venv is unsupported on WASI')
+ @requires_subprocess()
660
def test_makefile_overwrites_config_vars(self):
661
script = textwrap.dedent("""
662
import sys, sysconfig
@@ -689,6 +689,7 @@ def test_makefile_overwrites_config_vars(self):
689
self.assertNotEqual(data['prefix'], data['base_prefix'])
690
self.assertNotEqual(data['exec_prefix'], data['base_exec_prefix'])
691
692
+
693
class MakefileTests(unittest.TestCase):
694
695
@unittest.skipIf(sys.platform.startswith('win'),
0 commit comments