Skip to content

Commit e1d9a11

Browse files
authored
Skip flaky tests (RustPython#7961)
1 parent b9efe10 commit e1d9a11

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lib/test/test_asyncio/test_sendfile.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

584592
if __name__ == '__main__':
585593
unittest.main()

0 commit comments

Comments
 (0)