langchain-ai/langchain-google
Improvements: Integration tests should be async
オープン
#960 opened on 2025/06/02
enhancementgenaigood first issuehelp wantedvertexai
Repository metrics
- Stars
- (392 個のスター)
- PR merge metrics
- (PR metrics pending)
説明
The integration tests currently take a very long time to execute. However they are all I/O bound i.e. calling APIs and waiting for responses. This is very inefficient when running tests in series.
We should expect to see significant speed ups by making the integration tests async and using the x-dist plug-in for pytest (link).