Skip to content

Commit e4ce0d5

Browse files
authored
Merge pull request RustPython#3633 from youknowone/fix-win-ci
hide test_subprocess.test_invalid_cmd
2 parents dbf0c3e + b48cb1f commit e4ce0d5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/test/test_subprocess.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,7 @@ def is_env_var_to_ignore(n):
726726
if not is_env_var_to_ignore(k)]
727727
self.assertEqual(child_env_names, [])
728728

729+
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, null byte is not checked")
729730
def test_invalid_cmd(self):
730731
# null character in the command name
731732
cmd = sys.executable + '\0'

0 commit comments

Comments
 (0)