From e765f652958c26fb12f5843b9160b15c7adad347 Mon Sep 17 00:00:00 2001 From: Michael Moss Date: Tue, 13 Aug 2019 17:10:48 +0000 Subject: [PATCH] [depot_tools] Set "is_luci=False" for buildbot tests. This is needed to change the api.runtime default to is_luci=True in https://crrev.com/c/1750109. R=iannucci@google.com, tandrii@google.com Bug: 993137 Change-Id: Id52e0a12b9121d590fcb61e275eda8ca903372d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1751815 Reviewed-by: Andrii Shyshkalov Commit-Queue: Michael Moss --- recipes/recipe_modules/git/examples/full.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes/recipe_modules/git/examples/full.py b/recipes/recipe_modules/git/examples/full.py index 77321f017..28b8e780b 100644 --- a/recipes/recipe_modules/git/examples/full.py +++ b/recipes/recipe_modules/git/examples/full.py @@ -98,7 +98,10 @@ def RunSteps(api): def GenTests(api): - yield api.test('basic') + yield ( + api.test('basic') + + api.runtime(is_luci=False, is_experimental=False) + ) yield ( api.test('basic_luci') + api.runtime(is_luci=True, is_experimental=False)