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

Side by Side Diff: scripts/slave/recipe_modules/test_results/config.py

Issue 2230043002: Make test-results upload URL configurable. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: rebase Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « scripts/slave/recipe_modules/test_results/api.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 from recipe_engine.config import config_item_context, ConfigGroup, Single
3
4 def BaseConfig(**_kwargs):
5 return ConfigGroup(
6 test_results_server = Single(basestring))
7
8
9 config_ctx = config_item_context(BaseConfig)
10
11
12 @config_ctx(is_root=True)
13 def BASE(c):
14 pass
15
16 @config_ctx()
17 def public_server(c):
18 c.test_results_server = 'test-results.appspot.com'
19
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/test_results/api.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698