mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801)
This commit is contained in:
parent
9c8e490b8f
commit
1ded8ed8e8
1 changed files with 2 additions and 0 deletions
|
@ -456,6 +456,8 @@ class SendfileMixin(SendfileBase):
|
||||||
# themselves).
|
# themselves).
|
||||||
@unittest.skipIf(sys.platform.startswith('sunos'),
|
@unittest.skipIf(sys.platform.startswith('sunos'),
|
||||||
"Doesn't work on Solaris")
|
"Doesn't work on Solaris")
|
||||||
|
@unittest.skipIf(sys.platform == "win32",
|
||||||
|
"It is flaky on Windows and needs to be fixed") # TODO: bpo-41682
|
||||||
def test_sendfile_close_peer_in_the_middle_of_receiving(self):
|
def test_sendfile_close_peer_in_the_middle_of_receiving(self):
|
||||||
srv_proto, cli_proto = self.prepare_sendfile(close_after=1024)
|
srv_proto, cli_proto = self.prepare_sendfile(close_after=1024)
|
||||||
with self.assertRaises(ConnectionError):
|
with self.assertRaises(ConnectionError):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue