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 6a5a9962a2
commit 9f919cf925

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