]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-86179: Skip test case that fails on POSIX with unversioned binary (GH-114136)
authorSteve Dower <steve.dower@python.org>
Wed, 17 Jan 2024 11:33:59 +0000 (11:33 +0000)
committerGitHub <noreply@github.com>
Wed, 17 Jan 2024 11:33:59 +0000 (11:33 +0000)
Lib/test/test_venv.py

index 8ecb23ff3843629717aa9a2b98aa5d99fb9edea1..218e7560cff3f545d6db86ab0935eb5c29b18e5d 100644 (file)
@@ -324,7 +324,8 @@ class BasicTest(BaseTest):
             ('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})'