https://github.com/python/cpython/commit/ae6e7f572c18d9183cb23e6e53c3324dd9bf0c64 commit: ae6e7f572c18d9183cb23e6e53c3324dd9bf0c64 branch: main author: Furkan Onder <[email protected]> committer: FFY00 <[email protected]> date: 2025-10-04T13:56:43Z summary:
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 🇵🇸 <[email protected]> files: M Lib/test/test_venv.py diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index d46b45e54370b1..68bcf535eada10 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -516,6 +516,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) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
