Skip to content

Commit 8c33f7f

Browse files
authored
Merge branch 'python:main' into diegorusso-aarch64-bigmem
2 parents c4998a5 + cef8b34 commit 8c33f7f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

master/custom/factories.py

+5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):
7272
# Adjust the timeout for this worker
7373
self.test_timeout *= kwargs.get("timeout_factor", 1)
7474

75+
# In 3.9 and 3.10, test_asyncio wasn't split out, and refleaks tests
76+
# need more time.
77+
if branch in ("3.9", "3.10") and has_option("-R", self.testFlags):
78+
self.test_timeout *= 2
79+
7580
if self.build_out_of_tree:
7681
self.addStep(
7782
ShellCommand(

0 commit comments

Comments
 (0)