https://github.com/python/cpython/commit/de84a03099cb192f26f38712903004b34e16532a commit: de84a03099cb192f26f38712903004b34e16532a branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2025-10-08T14:10:34Z summary:
[3.13] gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (GH-139341) (#139560) 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 <[email protected]> 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 c39c83f9d0a5c3..8b27ce18be178d 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -518,6 +518,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]
