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

Unified Diff: appengine/findit/model/flake/master_flake_analysis.py

Issue 2416303002: [Findit] Adding support for triaging suspected builds from flake analysis (Closed)
Patch Set: Rebase Created 4 years, 2 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: appengine/findit/model/flake/master_flake_analysis.py
diff --git a/appengine/findit/model/flake/master_flake_analysis.py b/appengine/findit/model/flake/master_flake_analysis.py
index 24e3cf8a48e1da3132afdf0f544982df94b66899..faa9d0bd44fe7157e0569b399b46001366e50c94 100644
--- a/appengine/findit/model/flake/master_flake_analysis.py
+++ b/appengine/findit/model/flake/master_flake_analysis.py
@@ -10,6 +10,7 @@ from model.base_analysis import BaseAnalysis
from model.base_build_model import BaseBuildModel
from model.flake.flake_swarming_task import FlakeSwarmingTaskData
from model.versioned_model import VersionedModel
+from model.base_triaged_model import TriagedModel
class DataPoint(ndb.Model):
@@ -17,7 +18,8 @@ class DataPoint(ndb.Model):
pass_rate = ndb.FloatProperty(indexed=False)
-class MasterFlakeAnalysis(BaseAnalysis, BaseBuildModel, VersionedModel):
+class MasterFlakeAnalysis(
+ BaseAnalysis, BaseBuildModel, VersionedModel, TriagedModel):
"""Represents an analysis of a flaky test on a Waterfall test cycle."""
@ndb.ComputedProperty
« no previous file with comments | « appengine/findit/model/base_triaged_model.py ('k') | appengine/findit/model/test/base_triaged_model_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698