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
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

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):