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

Unified Diff: dashboard/dashboard/pinpoint/models/quest/run_test.py

Issue 3001163002: Pinpoint - Surface info from executions for display in UI. (Closed)
Patch Set: Rebase again. 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 side-by-side diff with in-line comments
Download patch
Index: dashboard/dashboard/pinpoint/models/quest/run_test.py
diff --git a/dashboard/dashboard/pinpoint/models/quest/run_test.py b/dashboard/dashboard/pinpoint/models/quest/run_test.py
index 0a0e53dd8f8ed85982fb33ed051b395f9f25d3c1..eb3b1942973832cadecb51d4a0c24a6a22a33824 100644
--- a/dashboard/dashboard/pinpoint/models/quest/run_test.py
+++ b/dashboard/dashboard/pinpoint/models/quest/run_test.py
@@ -97,6 +97,13 @@ class _RunTestExecution(execution_module.Execution):
def bot_ids(self):
return tuple(self._bot_ids)
+ def _AsDict(self):
+ return {
+ 'bot_ids': self._bot_ids,
+ 'task_ids': self._task_ids,
+ 'input_isolate_hash': self._isolate_hash,
+ }
+
def _Poll(self):
if not self._task_ids:
self._StartTask()
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/read_value.py ('k') | dashboard/dashboard/pinpoint/models/quest/run_test_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698