8000 bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30… · python/cpython@486b4d3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 486b4d3

Browse files
bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801) (GH-30812)
(cherry picked from commit 1ded8ed) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
1 parent 83aef4d commit 486b4d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_asyncio/test_sendfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,8 @@ def test_sendfile_ssl_close_peer_after_receiving(self):
456456
# themselves).
457457
@unittest.skipIf(sys.platform.startswith('sunos'),
458458
"Doesn't work on Solaris")
459+
@unittest.skipIf(sys.platform == "win32",
460+
"It is flaky on Windows and needs to be fixed") # TODO: bpo-41682
459461
def test_sendfile_close_peer_in_the_middle_of_receiving(self):
460462
srv_proto, cli_proto = self.prepare_sendfile(close_after=1024)
461463
with self.assertRaises(ConnectionError):

0 commit comments

Comments
 (0)
0