Skip to content

Commit 3bd1a77

Browse files
furkanonderFFY00
authored andcommitted
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 ae6e7f5) Co-authored-by: Furkan Onder <[email protected]> Co-authored-by: Filipe Laíns 🇵🇸 <[email protected]>
1 parent ec97866 commit 3bd1a77

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
@@ -522,6 +522,8 @@ def test_special_chars_bash(self):
522522

523523
# gh-124651: test quoted strings
524524
@unittest.skipIf(os.name == 'nt', 'contains invalid characters on Windows')
525+
@unittest.skipIf(sys.platform.startswith('netbsd'),
526+
"NetBSD csh fails with quoted special chars; see gh-139308")
525527
def test_special_chars_csh(self):
526528
"""
527529
Test that the template strings are quoted properly (csh)

0 commit comments

Comments
 (0)