gh-86179: Skip test case that fails on POSIX with unversioned binary (GH-114136)

This commit is contained in:
Steve Dower 2024-01-17 11:33:59 +00:00 committed by GitHub
parent 4a32275389
commit b204c4beb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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})'