8000 Skip another test that needs subprocesses. · python/cpython@a70f3e9 · GitHub
[go: up one dir, main page]

Skip to content

Commit a70f3e9

Browse files
committed
Skip another test that needs subprocesses.
1 parent d77c708 commit a70f3e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_sysconfig.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ def test_paths_depend_on_site_initialization(self):
656656

657657
self.assertNotEqual(site_paths, no_site_paths)
658658

659-
@unittest.skipIf(is_wasi, 'venv is unsupported on WASI')
659+
@requires_subprocess()
660660
def test_makefile_overwrites_config_vars(self):
661661
script = textwrap.dedent("""
662662
import sys, sysconfig
@@ -689,6 +689,7 @@ def test_makefile_overwrites_config_vars(self):
689689
self.assertNotEqual(data['prefix'], data['base_prefix'])
690690
self.assertNotEqual(data['exec_prefix'], data['base_exec_prefix'])
691691

692+
692693
class MakefileTests(unittest.TestCase):
693694

694695
@unittest.skipIf(sys.platform.startswith('win'),

0 commit comments

Comments
 (0)
0