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

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: Clean up and adding unit tests 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 fde544cd7eb65a721c2702a44e4ce5c7b747a25d..45c774694d4fa6f9bc317c741863e0d70fa8b2ef 100644
--- a/appengine/findit/model/flake/master_flake_analysis.py
+++ b/appengine/findit/model/flake/master_flake_analysis.py
@@ -11,6 +11,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):
@@ -18,7 +19,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

Powered by Google App Engine
This is Rietveld 408576698