Skip to content

Commit 100b043

Browse files
authored
Merge pull request RustPython#6453 from ShaharNaveh/skip-flakey-subprocess-test
Skip flakey test
2 parents 9e43966 + f391695 commit 100b043

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Lib/test/test_subprocess.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,8 +1770,7 @@ def test_run_with_pathlike_path_and_arguments(self):
17701770
res = subprocess.run(args)
17711771
self.assertEqual(res.returncode, 57)
17721772

1773-
# TODO: RUSTPYTHON
1774-
@unittest.expectedFailure
1773+
@unittest.skipIf(mswindows, 'TODO: RUSTPYTHON; Flakey')
17751774
@unittest.skipUnless(mswindows, "Maybe test trigger a leak on Ubuntu")
17761775
def test_run_with_an_empty_env(self):
17771776
# gh-105436: fix subprocess.run(..., env={}) broken on Windows

0 commit comments

Comments
 (0)