You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests: use asyncio.run() instead of get_event_loop().run_until_complete()
asyncio.get_event_loop() no longer creates a loop implicitly (deprecated in
3.12, removed in 3.14), so every test using this helper raised
'RuntimeError: There is no current event loop in thread' and the suite could
not be collected on a current interpreter.
175 passed on Python 3.14 after this change.
0 commit comments