fix: add timeout to test_sdk_client.py test (#4262)

This commit is contained in:
cthomas
2025-08-27 14:37:06 -07:00
committed by GitHub
parent a3e194e913
commit 49bfd4fba0

View File

@@ -48,7 +48,7 @@ def client() -> LettaSDKClient:
thread.start()
time.sleep(5)
print("Running client tests with server:", server_url)
client = LettaSDKClient(base_url=server_url, token=None)
client = LettaSDKClient(base_url=server_url, token=None, timeout=300.0)
yield client