| Index: recipe_modules/bot_update/api.py
|
| diff --git a/recipe_modules/bot_update/api.py b/recipe_modules/bot_update/api.py
|
| index 8b3a35b0b8486556235c5a0834b87291d5329a39..5d6e8b244fefce58a3c83347d5b4741ab8317071 100644
|
| --- a/recipe_modules/bot_update/api.py
|
| +++ b/recipe_modules/bot_update/api.py
|
| @@ -72,6 +72,9 @@ class BotUpdateApi(recipe_api.RecipeApi):
|
| patchset: The rietveld issue patchset to use. If omitted, will infer from
|
| the 'patchset' property.
|
| """
|
| + if self._mastername and 'skia' in self._mastername: #pragma: no cover
|
| + self.m.step('foo', ['echo', 'foo'])
|
| +
|
| refs = refs or []
|
| # We can re-use the gclient spec from the gclient module, since all the
|
| # data bot_update needs is already configured into the gclient spec.
|
| @@ -281,3 +284,5 @@ class BotUpdateApi(recipe_api.RecipeApi):
|
| self.m.path['checkout'] = cwd.join(*co_root.split(self.m.path.sep))
|
|
|
| return step_result
|
| +
|
| +
|
|
|