Triple retry sleep time for tests thats flaky on github CI

This commit is contained in:
Kovid Goyal
2020-07-19 16:17:57 +05:30
parent 1b9318e01b
commit 60e8ddf968
+1 -1
View File
@@ -132,7 +132,7 @@ class TestHTTP(BaseTest):
self.do_http_basic()
except Exception:
# this test is a little flaky on the windows CI machine.
time.sleep(1)
time.sleep(3)
self.do_http_basic()
def do_http_basic(self):