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

Unified Diff: scripts/slave/recipe_modules/chromium/api.py

Issue 1823183002: Run Sizes on Windows perf builders (take 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/chromium_perf.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index a08d87f0de7ec467382ed55ba9e3f675de1394de..38ce5052c5e3139741d5312538519bd06843b684 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -396,8 +396,7 @@ class ChromiumApi(recipe_api.RecipeApi):
properties_json = self.m.json.dumps(self.m.properties.legacy())
run_tests_args.extend(['--factory-properties', properties_json,
'--build-properties', properties_json])
- run_tests_args.extend(['--annotate=graphing',
- '--test-type=sizes',
+ run_tests_args.extend(['--test-type=sizes',
'--builder-name=%s' % self.m.properties['buildername'],
'--slave-name=%s' % self.m.properties['slavename'],
'--build-number=%s' % self.m.properties['buildnumber'],
@@ -405,7 +404,8 @@ class ChromiumApi(recipe_api.RecipeApi):
if perf_id:
assert results_url is not None
- run_tests_args.extend(['--results-url=%s' % results_url,
+ run_tests_args.extend(['--annotate=graphing',
+ '--results-url=%s' % results_url,
'--perf-dashboard-id=sizes',
'--perf-id=%s' % perf_id])
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/chromium_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698