Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d2226 commit 52c8c09Copy full SHA for 52c8c09
1 file changed
Lib/test/test_socket.py
@@ -5769,7 +5769,8 @@ class SendfileUsingSendTest(ThreadedTCPSocketTest):
5769
FILESIZE = (10 * 1024 * 1024) # 10 MiB
5770
BUFSIZE = 8192
5771
FILEDATA = b""
5772
- TIMEOUT = 2
+ # bpo-37553: This is taking longer than 2 seconds on Windows ARM32 buildbot
5773
+ TIMEOUT = 10 if sys.platform == 'win32' and platform.machine() == 'ARM' else 2
5774
5775
@classmethod
5776
def setUpClass(cls):
0 commit comments