Skip to content

Commit 090addd

Browse files
committed
Skip test_special_chars_csh on NetBSD due to csh variable expansion issue
1 parent 89b5571 commit 090addd

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

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)