diff options
author | Steve Dower <steve.dower@python.org> | 2024-01-17 11:33:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 11:33:59 (GMT) |
commit | b204c4beb44c1a9013f8da16984c9129374ed8c5 (patch) | |
tree | 914c7b118e6e7d7ffb349b1e6e8a7123f817cecd | |
parent | 4a32275389d94ba41f8881c32ad4b232effb1c6f (diff) | |
download | cpython-b204c4beb44c1a9013f8da16984c9129374ed8c5.zip cpython-b204c4beb44c1a9013f8da16984c9129374ed8c5.tar.gz cpython-b204c4beb44c1a9013f8da16984c9129374ed8c5.tar.bz2 |
gh-86179: Skip test case that fails on POSIX with unversioned binary (GH-114136)
-rw-r--r-- | Lib/test/test_venv.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index 8ecb23f..218e756 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -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})' |