From: Furkan Onder Date: Sat, 4 Oct 2025 13:56:43 +0000 (+0000) Subject: gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue... X-Git-Tag: v3.15.0a1~138 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae6e7f572c18d9183cb23e6e53c3324dd9bf0c64;p=thirdparty%2FPython%2Fcpython.git gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (#139341) Skip test_special_chars_csh on NetBSD due to csh variable expansion issue Co-authored-by: Filipe Laíns 🇵🇸 --- diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index d46b45e54370..68bcf535eada 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -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)