aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/swarm_infra.py
diff options
context:
space:
mode:
authorGravatar Eric Boren <borenet@google.com>2017-03-20 15:40:12 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-21 11:07:41 +0000
commit53262d0ff466668bfbc76893ba5a581203269572 (patch)
tree873d85cee029724dc7db242d47e346baa25fca91 /infra/bots/recipes/swarm_infra.py
parent3130fbb1a7aa60ac764f5ccb64a1a0ee976ea127 (diff)
Roll Recipe DEPS
BUG=skia: Change-Id: Ic89d1b49aba842fb41c82ad6fc8f5ebe787893bd Reviewed-on: https://skia-review.googlesource.com/9884 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Ravi Mistry <rmistry@google.com>
Diffstat (limited to 'infra/bots/recipes/swarm_infra.py')
-rw-r--r--infra/bots/recipes/swarm_infra.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/infra/bots/recipes/swarm_infra.py b/infra/bots/recipes/swarm_infra.py
index bb70a6a160..ac371a88ce 100644
--- a/infra/bots/recipes/swarm_infra.py
+++ b/infra/bots/recipes/swarm_infra.py
@@ -24,10 +24,8 @@ def RunSteps(api):
# Run the infra tests.
infra_tests = api.vars.skia_dir.join('infra', 'bots', 'infra_tests.py')
- with api.step.context({'cwd': api.vars.skia_dir}):
- api.step('infra_tests',
- cmd=['python', infra_tests],
- env=api.infra.go_env)
+ with api.step.context({'cwd': api.vars.skia_dir, 'env': api.infra.go_env}):
+ api.step('infra_tests', cmd=['python', infra_tests])
def GenTests(api):