diff --git a/tornado/test/ioloop_test.py b/tornado/test/ioloop_test.py index 047b3614e..e5814325c 100644 --- a/tornado/test/ioloop_test.py +++ b/tornado/test/ioloop_test.py @@ -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",