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 1ce97f0 commit eeff117Copy full SHA for eeff117
master/custom/builders.py
@@ -30,19 +30,22 @@
30
31
STABLE = "stable"
32
UNSTABLE = "unstable"
33
+# faulthandler uses a timeout 5 minutes smaller: it should be enough for the
34
+# slowest test.
35
+SLOW_TIMEOUT = 40 * 60
36
37
38
# classes using longer timeout for koobs's very slow buildbots
39
class SlowNonDebugUnixBuild(NonDebugUnixBuild):
- test_timeout = 30 * 60
40
+ test_timeout = SLOW_TIMEOUT
41
42
43
class SlowSharedUnixBuild(SharedUnixBuild):
44
45
46
47
class SlowUnixInstalledBuild(UnixInstalledBuild):
48
49
50
51
def get_builders(settings):
0 commit comments