From b91476242b3169623dfa953e86bde9404afe8ae2 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 12 Aug 2023 20:42:15 -0400 Subject: [PATCH] httpclient_test: Increase test_destructor_log timeout This test has recently become flaky on windows CI, and before investigating further, see if it's just because the CI machines are overloaded and subprocesses are slower on windows. --- tornado/test/httpclient_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/test/httpclient_test.py b/tornado/test/httpclient_test.py index a41040e6..31a19161 100644 --- a/tornado/test/httpclient_test.py +++ b/tornado/test/httpclient_test.py @@ -853,7 +853,7 @@ class SyncHTTPClientSubprocessTest(unittest.TestCase): stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=True, - timeout=5, + timeout=15, ) if proc.stdout: print("STDOUT:") -- GitLab