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
When running pytest-asyncio with pytest-xdist, my tests consistently hang between 90-100% completion. I suspect there might be an issue with resource acquisition not being properly managed at the end of the test suite.
I am using a fixture for running GPT-3.5 inference.
It accepts --models as an argument and uses it to parameterize to create a test suite.
Issue Description
When running
pytest-asyncio
withpytest-xdist
, my tests consistently hang between 90-100% completion. I suspect there might be an issue with resource acquisition not being properly managed at the end of the test suite.I am using a fixture for running GPT-3.5 inference.
It accepts
--models
as an argument and uses it to parameterize to create a test suite.I added a session-scoped fixture to manage the event loop and ensure clean-up, the problem persists.
The text was updated successfully, but these errors were encountered: