Skip to content

Commit ae6e7f5

Browse files
furkanonderFFY00
andauthored
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]>
1 parent a7a4855 commit ae6e7f5

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

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

0 commit comments

Comments
 (0)