Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2428)

Unified Diff: scripts/slave/recipes/chromium_trybot.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add builders property to chromium_tests test_api. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/chromium_trybot.py
diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py
index ac9b69dc017d3b62e10fe62252ef3961091b55a3..3cd059e1d324732576a1d34b7b9dbf8a1ece4cce 100644
--- a/scripts/slave/recipes/chromium_trybot.py
+++ b/scripts/slave/recipes/chromium_trybot.py
@@ -356,6 +356,7 @@ def _GenStepsInternal(api):
mastername = api.properties.get('mastername')
buildername = api.properties.get('buildername')
bot_config = get_bot_config(mastername, buildername)
+ api.chromium_tests.load_builder_configs(bot_config['mastername'])
api.chromium_tests.configure_swarming('chromium', precommit=True)
# TODO(sergiyb): This is a temporary hack to run GPU tests on tryserver
@@ -411,7 +412,7 @@ def _GenStepsInternal(api):
affected_files = api.tryserver.get_files_affected_by_patch()
if (any([f.startswith('third_party/WebKit') for f in affected_files]) and
buildername in CHROMIUM_BLINK_TESTS_BUILDERS):
- tests.append(api.chromium.steps.BlinkTest())
+ tests.append(api.chromium_tests.steps.BlinkTest())
compile_targets, tests_including_triggered = \
api.chromium_tests.get_compile_targets_and_tests(

Powered by Google App Engine
This is Rietveld 408576698