We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83aef4d commit 486b4d3Copy full SHA for 486b4d3
Lib/test/test_asyncio/test_sendfile.py
@@ -456,6 +456,8 @@ def test_sendfile_ssl_close_peer_after_receiving(self):
456
# themselves).
457
@unittest.skipIf(sys.platform.startswith('sunos'),
458
"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
461
def test_sendfile_close_peer_in_the_middle_of_receiving(self):
462
srv_proto, cli_proto = self.prepare_sendfile(close_after=1024)
463
with self.assertRaises(ConnectionError):
0 commit comments