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

Unified Diff: tools/perf/page_sets/key_desktop_move_cases.py

Issue 2926633002: Explicitly setting story names for all smoothness benchmarks (Closed)
Patch Set: Explicitly setting story names for all smoothness benchmarks Created 3 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: tools/perf/page_sets/key_desktop_move_cases.py
diff --git a/tools/perf/page_sets/key_desktop_move_cases.py b/tools/perf/page_sets/key_desktop_move_cases.py
index a226a6204197d9e7ee5a3f40e99775e6a2c95e0c..1cd6811c06c1c667aeac9e2b7097597ab8800149 100644
--- a/tools/perf/page_sets/key_desktop_move_cases.py
+++ b/tools/perf/page_sets/key_desktop_move_cases.py
@@ -9,6 +9,8 @@ from telemetry import story
class KeyDesktopMoveCasesPage(page_module.Page):
def __init__(self, url, page_set, name='', credentials=None):
+ if name == '':
+ name = url
super(KeyDesktopMoveCasesPage, self).__init__(
url=url, page_set=page_set, name=name,
credentials_path='data/credentials.json',
@@ -116,7 +118,8 @@ class KeyDesktopMoveCasesPageSet(story.StorySet):
def __init__(self):
super(KeyDesktopMoveCasesPageSet, self).__init__(
archive_data_file='data/key_desktop_move_cases.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
+ cloud_storage_bucket=story.PARTNER_BUCKET,
+ verify_names=True)
self.AddStory(GmailMouseScrollPage(self))
self.AddStory(GoogleMapsPage(self))
cblume 2017/06/06 20:10:58 In this case a name is not explicitly specified. I
ashleymarie1 2017/06/06 20:35:00 So what I'm trying to do with all these different
cblume 2017/06/06 21:07:16 Ah okay, I follow. Thank you for the clarification

Powered by Google App Engine
This is Rietveld 408576698