https://github.com/python/cpython/commit/b204c4beb44c1a9013f8da16984c9129374ed8c5
commit: b204c4beb44c1a9013f8da16984c9129374ed8c5
branch: main
author: Steve Dower <[email protected]>
committer: zooba <[email protected]>
date: 2024-01-17T11:33:59Z
summary:

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

files:
M Lib/test/test_venv.py

diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py
index 8ecb23ff384362..218e7560cff3f5 100644
--- a/Lib/test/test_venv.py
+++ b/Lib/test/test_venv.py
@@ -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})'

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to