python runtime_error ai_generated true

RuntimeError: 线程 'MainThread' 中没有当前事件循环。

RuntimeError: There is no current event loop in thread 'MainThread'.

ID: python/unittest-isolated-asyncio-testcase

其他格式: JSON · Markdown 中文 · English
80%修复率
85%置信度
0证据数
2025-03-07首次发现

版本兼容性

版本状态引入弃用备注
3.10 active
3.11 active
3.12 active

根因分析

在 unittest.IsolatedAsyncioTestCase 中使用在非异步上下文调用 asyncio.get_event_loop() 的代码,或错误混合同步/异步测试方法。

English

Using unittest.IsolatedAsyncioTestCase with code that calls asyncio.get_event_loop() from a non-async context, or mixing sync and async test methods incorrectly.

generic

解决方案

  1. 95% 成功率
    class TestX(unittest.IsolatedAsyncioTestCase):
        async def test_y(self):
            loop = asyncio.get_running_loop()
            await loop.create_task(coro())
  2. 90% 成功率
    class TestX(unittest.IsolatedAsyncioTestCase):
        async def test_y(self):
            loop = asyncio.get_running_loop()
            result = await my_func(loop=loop)
            self.assertEqual(result, 1)

无效尝试

常见但无效的做法:

  1. 85% 失败

    IsolatedAsyncioTestCase manages its own loop; overriding it causes 'loop already running' or leaks loops between tests.

  2. 60% 失败

    Works for simple cases but breaks async fixtures and shares no loop with the test's async methods.

  3. 95% 失败

    IsolatedAsyncioTestCase exists from 3.8; downgrading does not change the event-loop lookup behavior.