Skip to content

Commit de84a03

Browse files
miss-islingtonfurkanonderFFY00
authored
[3.13] pythongh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (pythonGH-139341) (python#139560)
pythongh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (pythonGH-139341) Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (cherry picked from commit ae6e7f5) Co-authored-by: Furkan Onder <[email protected]> Co-authored-by: Filipe Laíns 🇵🇸 <[email protected]>
1 parent 12ada79 commit de84a03

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_venv.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,8 @@ def test_special_chars_bash(self):
518518

519519
# gh-124651: test quoted strings
520520
@unittest.skipIf(os.name == 'nt', 'contains invalid characters on Windows')
521+
@unittest.skipIf(sys.platform.startswith('netbsd'),
522+
"NetBSD csh fails with quoted special chars; see gh-139308")
521523
def test_special_chars_csh(self):
522524
"""
523525
Test that the template strings are quoted properly (csh)

0 commit comments

Comments
 (0)