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

Unified Diff: appengine/swarming/server/task_result_test.py

Issue 2267363004: Add CIPD pin reporting to swarming. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Fix bottest 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/server/task_result.py ('k') | appengine/swarming/server/task_scheduler.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/server/task_result_test.py
diff --git a/appengine/swarming/server/task_result_test.py b/appengine/swarming/server/task_result_test.py
index 39a659a2aed4af4f5c85d9d4d9a2e46d5aeb5779..7896ba2a23b66f23736b13324869407dfa961663 100755
--- a/appengine/swarming/server/task_result_test.py
+++ b/appengine/swarming/server/task_result_test.py
@@ -150,6 +150,7 @@ class TaskResultApiTest(TestCase):
'bot_dimensions': None,
'bot_id': None,
'bot_version': None,
+ 'cipd_pins': None,
'children_task_ids': [],
'completed_ts': None,
'costs_usd': [],
@@ -202,6 +203,7 @@ class TaskResultApiTest(TestCase):
'bot_id': 'localhost',
'bot_version': 'abc',
'children_task_ids': [],
+ 'cipd_pins': None,
'completed_ts': None,
'cost_usd': 0.,
'duration': None,
@@ -234,6 +236,7 @@ class TaskResultApiTest(TestCase):
'bot_dimensions': None,
'bot_id': None,
'bot_version': None,
+ 'cipd_pins': None,
'children_task_ids': [],
'completed_ts': None,
'costs_usd': [],
@@ -281,6 +284,7 @@ class TaskResultApiTest(TestCase):
'bot_dimensions': {},
'bot_id': u'localhost',
'bot_version': u'abc',
+ 'cipd_pins': None,
'children_task_ids': [],
'completed_ts': None,
'costs_usd': [0.],
@@ -335,6 +339,7 @@ class TaskResultApiTest(TestCase):
'bot_dimensions': {},
'bot_id': u'localhost',
'bot_version': u'abc',
+ 'cipd_pins': None,
'children_task_ids': [],
'completed_ts': complete_ts,
'costs_usd': [0.],
« no previous file with comments | « appengine/swarming/server/task_result.py ('k') | appengine/swarming/server/task_scheduler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698