File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -573,13 +573,21 @@ class PollEventLoopTests(SendfileTestsBase,
573573 def create_event_loop (self ):
574574 return asyncio .SelectorEventLoop (selectors .PollSelector ())
575575
576+ @unittest .skipIf (sys .platform != "win32" , "TODO: RUSTPYTHON; Flaky on CI" )
577+ def test_sendfile_ssl_pre_and_post_data (self ):
578+ return super ().test_sendfile_ssl_pre_and_post_data ()
579+
576580 # Should always exist.
577581 class SelectEventLoopTests (SendfileTestsBase ,
578582 test_utils .TestCase ):
579583
580584 def create_event_loop (self ):
581585 return asyncio .SelectorEventLoop (selectors .SelectSelector ())
582586
587+ @unittest .skipIf (sys .platform != "win32" , "TODO: RUSTPYTHON; Flaky on CI" )
588+ def test_sendfile_ssl_pre_and_post_data (self ):
589+ return super ().test_sendfile_ssl_pre_and_post_data ()
590+
583591
584592if __name__ == '__main__' :
585593 unittest .main ()
You can’t perform that action at this time.
0 commit comments