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

Side by Side Diff: appengine/findit/model/flake/master_flake_analysis.py

Issue 2536953002: [Findit] Add link to swarming tasks. (Closed)
Patch Set: . Created 4 years 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 base64 5 import base64
6 6
7 from google.appengine.ext import ndb 7 from google.appengine.ext import ndb
8 8
9 from gae_libs.model.versioned_model import VersionedModel 9 from gae_libs.model.versioned_model import VersionedModel
10 from model import result_status 10 from model import result_status
11 from model import triage_status 11 from model import triage_status
12 from model.base_analysis import BaseAnalysis 12 from model.base_analysis import BaseAnalysis
13 from model.base_build_model import BaseBuildModel 13 from model.base_build_model import BaseBuildModel
14 from model.base_triaged_model import TriagedModel 14 from model.base_triaged_model import TriagedModel
15 from model.flake.flake_swarming_task import FlakeSwarmingTaskData 15 from model.flake.flake_swarming_task import FlakeSwarmingTaskData
16 16
17 17
18 class DataPoint(ndb.Model): 18 class DataPoint(ndb.Model):
19 build_number = ndb.IntegerProperty(indexed=False) 19 build_number = ndb.IntegerProperty(indexed=False)
20 pass_rate = ndb.FloatProperty(indexed=False) 20 pass_rate = ndb.FloatProperty(indexed=False)
21 task_id = ndb.StringProperty(indexed=False)
21 22
22 23
23 class MasterFlakeAnalysis( 24 class MasterFlakeAnalysis(
24 BaseAnalysis, BaseBuildModel, VersionedModel, TriagedModel): 25 BaseAnalysis, BaseBuildModel, VersionedModel, TriagedModel):
25 """Represents an analysis of a flaky test on a Waterfall test cycle.""" 26 """Represents an analysis of a flaky test on a Waterfall test cycle."""
26 27
27 @ndb.ComputedProperty 28 @ndb.ComputedProperty
28 def step_name(self): 29 def step_name(self):
29 return self.key.pairs()[0][1].split('/')[3] 30 return self.key.pairs()[0][1].split('/')[3]
30 31
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 # Findit's automatic analysis upon detection, or Findit API. 161 # Findit's automatic analysis upon detection, or Findit API.
161 triggering_source = ndb.IntegerProperty(default=None, indexed=True) 162 triggering_source = ndb.IntegerProperty(default=None, indexed=True)
162 163
163 # Who triggered the analysis. Used for differentiating between manual and 164 # Who triggered the analysis. Used for differentiating between manual and
164 # automatic runs, and determining the most active users to gather feedback. 165 # automatic runs, and determining the most active users to gather feedback.
165 triggering_user_email = ndb.StringProperty(default=None, indexed=False) 166 triggering_user_email = ndb.StringProperty(default=None, indexed=False)
166 167
167 # Overall conclusion of analysis result for the flake. Found untriaged, Found 168 # Overall conclusion of analysis result for the flake. Found untriaged, Found
168 # Correct, etc. used to filter what is displayed on the check flake dashboard. 169 # Correct, etc. used to filter what is displayed on the check flake dashboard.
169 result_status = ndb.IntegerProperty(indexed=True) 170 result_status = ndb.IntegerProperty(indexed=True)
OLDNEW
« no previous file with comments | « appengine/findit/handlers/flake/test/check_flake_test.py ('k') | appengine/findit/templates/flake/result.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698