| Index: scripts/slave/recipe_modules/chromium_tests/test_api.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/test_api.py b/scripts/slave/recipe_modules/chromium_tests/test_api.py
|
| index c5d385e66176a2ea0e6aedd4149884aac4c9e20f..fe5fc632d7d141ff76fccc7ea1aa5b3786f65c46 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/test_api.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/test_api.py
|
| @@ -4,10 +4,16 @@
|
|
|
| from recipe_engine import recipe_test_api
|
|
|
| +from . import builders
|
| +
|
|
|
| class ChromiumTestsApi(recipe_test_api.RecipeTestApi):
|
| + @property
|
| + def builders(self):
|
| + return builders.BUILDERS
|
| +
|
| def platform(self, mastername, buildername):
|
| - bot_config = self.m.chromium.builders[mastername]['builders'][buildername]
|
| + bot_config = builders.BUILDERS[mastername]['builders'][buildername]
|
| # TODO(phajdan.jr): Get the bitness from actual config for that bot.
|
| return self.m.platform(
|
| bot_config['testing']['platform'],
|
|
|