Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Lib/test/test_asyncio/test_sendfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,10 @@ class EPollEventLoopTests(SendfileTestsBase,
def create_event_loop(self):
return asyncio.SelectorEventLoop(selectors.EpollSelector())

@unittest.skipIf(sys.platform != "win32", "TODO: RUSTPYTHON; Flaky on CI")
def test_sendfile_ssl_pre_and_post_data(self):
return super().test_sendfile_ssl_pre_and_post_data()

if hasattr(selectors, 'PollSelector'):
class PollEventLoopTests(SendfileTestsBase,
test_utils.TestCase):
Expand Down
Loading