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

Side by Side Diff: dashboard/dashboard/pinpoint/models/quest_generator.py

Issue 2995163002: Pinpoint - Need to supply --output-format=chartjson (Closed)
Patch Set: Created 3 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 | « no previous file | dashboard/dashboard/pinpoint/models/quest_generator_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import json 5 import json
6 6
7 from dashboard.pinpoint.models import quest as quest_module 7 from dashboard.pinpoint.models import quest as quest_module
8 8
9 9
10 def QuestGenerator(request): 10 def QuestGenerator(request):
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 arguments = [self.benchmark] 89 arguments = [self.benchmark]
90 90
91 if self.story: 91 if self.story:
92 arguments += ('--story-filter', self.story) 92 arguments += ('--story-filter', self.story)
93 93
94 if self.repeat_count != 1: 94 if self.repeat_count != 1:
95 arguments += ('--pageset-repeat', str(self.repeat_count)) 95 arguments += ('--pageset-repeat', str(self.repeat_count))
96 96
97 arguments += ('--browser', self.browser) 97 arguments += ('--browser', self.browser)
98 98
99 arguments += ('-v', '--upload-results', '--output-format', 'chartjson') 99 arguments += ('-v', '--upload-results', '--output-format=chartjson')
100 arguments += ( 100 arguments += (
101 '--isolated-script-test-output', '${ISOLATED_OUTDIR}/output.json', 101 '--isolated-script-test-output', '${ISOLATED_OUTDIR}/output.json',
102 '--isolated-script-test-chartjson-output', 102 '--isolated-script-test-chartjson-output',
103 '${ISOLATED_OUTDIR}/chartjson-output.json', 103 '${ISOLATED_OUTDIR}/chartjson-output.json',
104 ) 104 )
105 105
106 return arguments 106 return arguments
OLDNEW
« no previous file with comments | « no previous file | dashboard/dashboard/pinpoint/models/quest_generator_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698