Increase devicelab test_run timeout to 15 mins. It seems like we have several tasks that are taking longer than 5 mins to execute. This will increase the default timeout to 15 mins but we need to revisit all the tests whose execution time is longer than 5 mins. Change-Id: Id3b4a4f82046d3db7273675cfa187b22fafb5f6a Bug: https://github.com/flutter/flutter/issues/80001 Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/12164 Reviewed-by: Jenn Magder <magder@google.com> Commit-Queue: Godofredo Contreras <godofredoc@google.com>
diff --git a/recipes/devicelab/devicelab_drone.expected/basic.json b/recipes/devicelab/devicelab_drone.expected/basic.json index 2a47493..29e413d 100644 --- a/recipes/devicelab/devicelab_drone.expected/basic.json +++ b/recipes/devicelab/devicelab_drone.expected/basic.json
@@ -300,7 +300,7 @@ ] }, "name": "run abc", - "timeout": 600, + "timeout": 900, "~followup_annotations": [ "@@@STEP_LOG_LINE@stdout@@@@", "@@@STEP_LOG_END@stdout@@@",
diff --git a/recipes/devicelab/devicelab_drone.expected/post-submit.json b/recipes/devicelab/devicelab_drone.expected/post-submit.json index 15c5f9a..21eb35a 100644 --- a/recipes/devicelab/devicelab_drone.expected/post-submit.json +++ b/recipes/devicelab/devicelab_drone.expected/post-submit.json
@@ -299,7 +299,7 @@ ] }, "name": "run abc", - "timeout": 600, + "timeout": 900, "~followup_annotations": [ "@@@STEP_LOG_LINE@stdout@@@@", "@@@STEP_LOG_END@stdout@@@",
diff --git a/recipes/devicelab/devicelab_drone.expected/upload-metrics-mac.json b/recipes/devicelab/devicelab_drone.expected/upload-metrics-mac.json index 7b302ea..404cae8 100644 --- a/recipes/devicelab/devicelab_drone.expected/upload-metrics-mac.json +++ b/recipes/devicelab/devicelab_drone.expected/upload-metrics-mac.json
@@ -325,7 +325,7 @@ ] }, "name": "run abc", - "timeout": 600, + "timeout": 900, "~followup_annotations": [ "@@@STEP_LOG_LINE@stdout@@@@", "@@@STEP_LOG_END@stdout@@@",
diff --git a/recipes/devicelab/devicelab_drone.expected/xcode-chromium-mac.json b/recipes/devicelab/devicelab_drone.expected/xcode-chromium-mac.json index eb7c304..f1a871b 100644 --- a/recipes/devicelab/devicelab_drone.expected/xcode-chromium-mac.json +++ b/recipes/devicelab/devicelab_drone.expected/xcode-chromium-mac.json
@@ -325,7 +325,7 @@ ] }, "name": "run abc", - "timeout": 600, + "timeout": 900, "~followup_annotations": [ "@@@STEP_LOG_LINE@stdout@@@@", "@@@STEP_LOG_END@stdout@@@",
diff --git a/recipes/devicelab/devicelab_drone.expected/xcode-devicelab.json b/recipes/devicelab/devicelab_drone.expected/xcode-devicelab.json index eb7c304..f1a871b 100644 --- a/recipes/devicelab/devicelab_drone.expected/xcode-devicelab.json +++ b/recipes/devicelab/devicelab_drone.expected/xcode-devicelab.json
@@ -325,7 +325,7 @@ ] }, "name": "run abc", - "timeout": 600, + "timeout": 900, "~followup_annotations": [ "@@@STEP_LOG_LINE@stdout@@@@", "@@@STEP_LOG_END@stdout@@@",
diff --git a/recipes/devicelab/devicelab_drone.py b/recipes/devicelab/devicelab_drone.py index a230a9c..fc7f81a 100644 --- a/recipes/devicelab/devicelab_drone.py +++ b/recipes/devicelab/devicelab_drone.py
@@ -25,8 +25,8 @@ 'recipe_engine/swarming', ] -# Ten minutes -MAX_TIMEOUT_SECS = 10 * 60 +# Fifteen minutes +MAX_TIMEOUT_SECS = 15 * 60 def RunSteps(api):