Skip to content

Commit

Permalink
pythonGH-128690: skip test_init_pyvenv_cfg on shared builds
Browse files Browse the repository at this point in the history
Signed-off-by: Filipe Laíns <lains@riseup.net
  • Loading branch information
FFY00 committed Jan 11, 2025
1 parent 553cdc6 commit f164c37
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Lib/test/test_embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -1608,6 +1608,10 @@ def test_init_pybuilddir_win32(self):
api=API_COMPAT, env=env,
ignore_stderr=False, cwd=tmpdir)

@unittest.skipIf(
sysconfig.get_config_var('LDLIBRARY') != sysconfig.get_config_var('LIBRARY'),
"Test only available when static linking libpython",
)
def test_init_pyvenv_cfg(self):
# Test path configuration with pyvenv.cfg configuration file

Expand Down

0 comments on commit f164c37

Please sign in to comment.