Skip to content

Commit

Permalink
[3.12] pythongh-126789: Correct sysconfig test exclusions for iOS and…
Browse files Browse the repository at this point in the history
… Android. (pythonGH-126941)

(cherry picked from commit 3938fd6)

Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
  • Loading branch information
freakboy3742 committed Nov 18, 2024
1 parent 9d986d9 commit 5472661
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/test/test_sysconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def test_osx_ext_suffix(self):
suffix = sysconfig.get_config_var('EXT_SUFFIX')
self.assertTrue(suffix.endswith('-darwin.so'), suffix)

@unittest.skipIf(sys.platform == 'wasi', 'venv is unsupported on WASI')
@requires_subprocess()
def test_config_vars_depend_on_site_initialization(self):
script = textwrap.dedent("""
import sysconfig
Expand All @@ -544,7 +544,7 @@ def test_config_vars_depend_on_site_initialization(self):
self.assertEqual(no_site_config_vars['base'], site_config_vars['installed_base'])
self.assertEqual(no_site_config_vars['platbase'], site_config_vars['installed_platbase'])

@unittest.skipIf(sys.platform == 'wasi', 'venv is unsupported on WASI')
@requires_subprocess()
def test_config_vars_recalculation_after_site_initialization(self):
script = textwrap.dedent("""
import sysconfig
Expand All @@ -568,7 +568,7 @@ def test_config_vars_recalculation_after_site_initialization(self):
#self.assertEqual(config_vars['after']['prefix'], venv.prefix) # FIXME: prefix gets overwriten by _init_posix
#self.assertEqual(config_vars['after']['exec_prefix'], venv.prefix) # FIXME: exec_prefix gets overwriten by _init_posix

@unittest.skipIf(sys.platform == 'wasi', 'venv is unsupported on WASI')
@requires_subprocess()
def test_paths_depend_on_site_initialization(self):
script = textwrap.dedent("""
import sysconfig
Expand Down

0 comments on commit 5472661

Please sign in to comment.