From f6ecae9c80d0f96a76f3af852a403ef7dd203ef2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 28 Jun 2016 06:52:34 +0530 Subject: [PATCH] Adjust timeout to account for poor Travis performance --- src/calibre/srv/tests/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/srv/tests/http.py b/src/calibre/srv/tests/http.py index 8a3cd3b344..5c80e2824f 100644 --- a/src/calibre/srv/tests/http.py +++ b/src/calibre/srv/tests/http.py @@ -81,7 +81,7 @@ class TestHTTP(BaseTest): def handler(data): return data.lang_code + data._('Unknown') - with TestServer(handler, timeout=0.1) as server: + with TestServer(handler, timeout=0.3) as server: conn = server.connect() def test(al, q):