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

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

Issue 2563383002: [Findit] Flake Checker: Extract commit position and git hash and display to UI for each analyzed bu… (Closed)
Patch Set: Fixing nit 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 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 2adca1bb3cfb416f774864357b54e1485b0097f9..cf2ef0c2e86dbcad416ff6542eec2dc5d17b39af 100644
--- a/appengine/findit/model/flake/master_flake_analysis.py
+++ b/appengine/findit/model/flake/master_flake_analysis.py
@@ -19,6 +19,10 @@ class DataPoint(ndb.Model):
build_number = ndb.IntegerProperty(indexed=False)
pass_rate = ndb.FloatProperty(indexed=False)
task_id = ndb.StringProperty(indexed=False)
+ commit_position = ndb.IntegerProperty(indexed=False)
+ git_hash = ndb.StringProperty(indexed=False)
+ previous_build_commit_position = ndb.IntegerProperty(indexed=False)
+ previous_build_git_hash = ndb.StringProperty(indexed=False)
class MasterFlakeAnalysis(
« 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