]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 8 Oct 2025 14:10:34 +0000 (16:10 +0200)
committerGitHub <noreply@github.com>
Wed, 8 Oct 2025 14:10:34 +0000 (14:10 +0000)
gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (GH-139341)

Skip test_special_chars_csh on NetBSD due to csh variable expansion issue
(cherry picked from commit ae6e7f572c18d9183cb23e6e53c3324dd9bf0c64)

Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
Lib/test/test_venv.py

index c39c83f9d0a5c3ab7fe7ca6b265a0a5fa4491f0a..8b27ce18be178d688ec5b3c0e1bd60c3a27e6393 100644 (file)
@@ -518,6 +518,8 @@ class BasicTest(BaseTest):
 
     # gh-124651: test quoted strings
     @unittest.skipIf(os.name == 'nt', 'contains invalid characters on Windows')
+    @unittest.skipIf(sys.platform.startswith('netbsd'),
+                     "NetBSD csh fails with quoted special chars; see gh-139308")
     def test_special_chars_csh(self):
         """
         Test that the template strings are quoted properly (csh)