Skip to content

Commit

Permalink
Merge pull request #3445 from bdarnell/py314-fix
Browse files Browse the repository at this point in the history
ioloop_test: Skip a test that no longer works on py3.14
  • Loading branch information
bdarnell authored Nov 21, 2024
2 parents e22eaef + afb2337 commit 1c3335d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tornado/test/ioloop_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,9 @@ def test_asyncio(self):
)
self.assertEqual(cls, "AsyncIOMainLoop")

@unittest.skipIf(
sys.version_info >= (3, 14), "implicit event loop creation not available"
)
def test_asyncio_main(self):
cls = self.run_python(
"from tornado.platform.asyncio import AsyncIOMainLoop",
Expand Down

0 comments on commit 1c3335d

Please sign in to comment.