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 Jan 17, 2024
1 parent 4a32275 commit b204c4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_venv.py
Original file line number Diff line number Diff line change
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 b204c4b

Please sign in to comment.