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
pytest didn't use the result of test functions but `async def` functions
return an awaitable object.
Though `async def` functions were just passed like they don't have any
problem, their codes actually didn't run. For users, it was really hard to
detect the tests really were run or not.
This patch makes to check the result of test functions and if it is an
awaitable object then actually run the functions to ensure its code is
run.
0 commit comments