Skip to content

Commit 2629674

Browse files
committed
test: bump timeout on GITHUB_ACTION
1 parent cb54df9 commit 2629674

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/server/tests/utils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
import wget
2727

2828

29-
DEFAULT_HTTP_TIMEOUT = 12 if "LLAMA_SANITIZE" not in os.environ else 30
29+
DEFAULT_HTTP_TIMEOUT = 12
30+
31+
if "LLAMA_SANITIZE" in os.environ or "GITHUB_ACTION" in os.environ:
32+
DEFAULT_HTTP_TIMEOUT = 30
3033

3134

3235
class ServerResponse:

0 commit comments

Comments
 (0)