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 b408880 commit ba932d9Copy full SHA for ba932d9
Lib/test/test_asyncio/test_sendfile.py
@@ -451,6 +451,8 @@ def test_sendfile_ssl_close_peer_after_receiving(self):
451
# themselves).
452
@unittest.skipIf(sys.platform.startswith('sunos'),
453
"Doesn't work on Solaris")
454
+ @unittest.skipIf(sys.platform == "win32",
455
+ "It is flaky on Windows and needs to be fixed") # TODO: bpo-41682
456
def test_sendfile_close_peer_in_the_middle_of_receiving(self):
457
srv_proto, cli_proto = self.prepare_sendfile(close_after=1024)
458
with self.assertRaises(ConnectionError):
0 commit comments