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

Unified Diff: appengine/findit/handlers/test/list_analyses_test.py

Issue 1912483004: [Findit] Add failure type to dashboard. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 4 years, 8 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/findit/handlers/list_analyses.py ('k') | appengine/findit/model/test/wf_analysis_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/handlers/test/list_analyses_test.py
diff --git a/appengine/findit/handlers/test/list_analyses_test.py b/appengine/findit/handlers/test/list_analyses_test.py
index 97325b84990ea2f2dbff6e67e6235d1a5e08b2c1..63dc2b7d2a792c36beb99f348859f7b8298da6e4 100644
--- a/appengine/findit/handlers/test/list_analyses_test.py
+++ b/appengine/findit/handlers/test/list_analyses_test.py
@@ -269,6 +269,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'Linux GN',
'build_number': 26120,
'build_start_time': self.stored_dates.get(10),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -286,6 +287,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 1,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -303,6 +305,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 3,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [],
@@ -328,6 +331,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 1,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -345,6 +349,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 3,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [],
@@ -355,6 +360,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 7,
'build_start_time': self.stored_dates.get(7),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -385,6 +391,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 9,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -402,6 +409,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 2,
'build_start_time': self.stored_dates.get(2),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [],
@@ -427,6 +435,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'Linux GN',
'build_number': 26120,
'build_start_time': self.stored_dates.get(10),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -444,6 +453,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 1,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -476,6 +486,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 1,
'build_start_time': None,
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -512,6 +523,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'b',
'build_number': 2,
'build_start_time': self.stored_dates.get(2),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [],
@@ -522,6 +534,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'Linux GN',
'build_number': 26120,
'build_start_time': self.stored_dates.get(10),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
@@ -558,6 +571,7 @@ class ListAnalysesTest(testing.AppengineTestCase):
'builder_name': 'Linux GN',
'build_number': 26120,
'build_start_time': self.stored_dates.get(10),
+ 'failure_type': 'test',
'status': 70,
'status_description': 'Completed',
'suspected_cls': [
« no previous file with comments | « appengine/findit/handlers/list_analyses.py ('k') | appengine/findit/model/test/wf_analysis_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698