langchain-ai/langchain-google
View on GitHubImprovements: Integration tests should be async
Open
#960 opened on Jun 2, 2025
enhancementgenaigood first issuehelp wantedvertexai
Repository metrics
- Stars
- (392 stars)
- PR merge metrics
- (PR metrics pending)
Description
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).