aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules
diff options
context:
space:
mode:
authorGravatar Eric Boren <borenet@google.com>2016-11-16 10:49:52 -0500
committerGravatar Eric Boren <borenet@google.com>2016-11-16 17:21:03 +0000
commit58bf693ffd9faab97eff69bc21203c138f142564 (patch)
tree965477a7f9791721dbb1784ad0056690fdcd9bf8 /infra/bots/recipe_modules
parente4b8b5283f45cff6a490ee73677f75b641c22bd1 (diff)
infra recipe: Add -t flag to "go test"
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4896 Change-Id: Iff66f67a28b65797446d0ba26064f00dc948bb47 Reviewed-on: https://skia-review.googlesource.com/4896 Reviewed-by: Kevin Lubick <kjlubick@google.com> Reviewed-by: Joe Gregorio <jcgregorio@google.com> Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots/recipe_modules')
-rw-r--r--infra/bots/recipe_modules/infra/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/recipe_modules/infra/api.py b/infra/bots/recipe_modules/infra/api.py
index 17d3729b87..7a4d7b21ac 100644
--- a/infra/bots/recipe_modules/infra/api.py
+++ b/infra/bots/recipe_modules/infra/api.py
@@ -28,5 +28,5 @@ class InfraApi(recipe_api.RecipeApi):
self.m.step,
'update go pkgs',
UPDATE_GO_ATTEMPTS,
- cmd=['go', 'get', '-u', '%s/...' % INFRA_GO_PKG],
+ cmd=['go', 'get', '-u', '-t', '%s/...' % INFRA_GO_PKG],
env=self.go_env)