From 090adddca077dcbf7c4d079bf72de0296015e220 Mon Sep 17 00:00:00 2001 From: furkanonder Date: Fri, 26 Sep 2025 00:01:35 +0300 Subject: [PATCH] Skip test_special_chars_csh on NetBSD due to csh variable expansion issue --- Lib/test/test_venv.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index 3c18c9c2900ad7..015f02925505e8 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -522,6 +522,8 @@ def test_special_chars_bash(self): # 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)