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

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

Issue 2318413002: Re-add perf-id and results-url. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 3 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/recipe_modules/chromium_tests/api.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/api.py b/scripts/slave/recipe_modules/chromium_tests/api.py
index a87f7c52d656ff515849ccdca178671d87169950..bf25a35f5ffd234a69294581550c54e9087a338b 100644
--- a/scripts/slave/recipe_modules/chromium_tests/api.py
+++ b/scripts/slave/recipe_modules/chromium_tests/api.py
@@ -796,6 +796,11 @@ class ChromiumTestsApi(recipe_api.RecipeApi):
for name in ('buildername', 'slavename', 'buildnumber', 'mastername'):
properties[name] = self.m.properties[name]
+ # Optional properties
+ for name in ('perf-id', 'results-url'):
+ if bot_config.get(name):
+ properties[name] = bot_config[name]
+
properties['target_platform'] = self.m.chromium.c.TARGET_PLATFORM
args.extend(['--properties', self.m.json.input(properties)])

Powered by Google App Engine
This is Rietveld 408576698