]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue...
authorFurkan Onder <furkanonder@protonmail.com>
Sat, 4 Oct 2025 13:56:43 +0000 (13:56 +0000)
committerGitHub <noreply@github.com>
Sat, 4 Oct 2025 13:56:43 +0000 (13:56 +0000)
Skip test_special_chars_csh on NetBSD due to csh variable expansion issue

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

index d46b45e54370b1fa7c6299da1a2b1384f7ebff60..68bcf535eada10483c75a74984361eb0303a78b9 100644 (file)
@@ -516,6 +516,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)