langchain-ai/langchain-google

Improvements: Integration tests should be async

Open

#960 opened on Jun 2, 2025

View on GitHub
 (6 comments) (1 reaction) (0 assignees)Python (461 forks)auto 404
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).

Contributor guide