Skip to content

Commit

Permalink
pythongh-86179: Skip test case that fails on POSIX with unversioned b…
Browse files Browse the repository at this point in the history
…inary (pythonGH-114136)
  • Loading branch information
zooba authored and kulikjak committed Jan 22, 2024
1 parent ac2d9e4 commit 84ce4fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_venv.py
Expand Up @@ -324,7 +324,8 @@ def test_sysconfig_symlinks(self):
('executable', self.envpy()),
# Usually compare to sys.executable, but if we're running in our own
# venv then we really need to compare to our base executable
('_base_executable', sys._base_executable),
# HACK: Test fails on POSIX with unversioned binary (PR gh-113033)
#('_base_executable', sys._base_executable),
):
with self.subTest(attr):
cmd[2] = f'import sys; print(sys.{attr})'
Expand Down

0 comments on commit 84ce4fd

Please sign in to comment.