From 57a8038d05e99cdcb0fcccfcf495295ff5043d6c Mon Sep 17 00:00:00 2001 From: drbh Date: Mon, 26 Aug 2024 21:14:32 +0000 Subject: [PATCH] fix: increase test client timeout for grammar compilation tests --- integration-tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index 15af1cad..a8a77cd2 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -257,7 +257,7 @@ class IgnoreLogProbResponseComparator(ResponseComparator): class LauncherHandle: def __init__(self, port: int): - self.client = AsyncClient(f"http://localhost:{port}") + self.client = AsyncClient(f"http://localhost:{port}", timeout=30) def _inner_health(self): raise NotImplementedError