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

Side by Side Diff: appengine/findit/model/wf_config.py

Issue 2630433002: Findit] Flake Checker: Pipeline to trigger try jobs to identify flake culprits (Closed)
Patch Set: Addressing comments Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 """Findit for Waterfall configuration.""" 5 """Findit for Waterfall configuration."""
6 6
7 from google.appengine.ext import ndb 7 from google.appengine.ext import ndb
8 8
9 from gae_libs.model.versioned_config import VersionedConfig 9 from gae_libs.model.versioned_config import VersionedConfig
10 10
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 # 'upper_flake_threshold': 0.98, 96 # 'upper_flake_threshold': 0.98,
97 # 'max_flake_in_a_row': 4, 97 # 'max_flake_in_a_row': 4,
98 # 'max_stable_in_a_row': 4, 98 # 'max_stable_in_a_row': 4,
99 # 'iterations_to_rerun': 100, 99 # 'iterations_to_rerun': 100,
100 # 'max_build_numbers_to_look_back': 500, 100 # 'max_build_numbers_to_look_back': 500,
101 # 'update_monorail_bug': False, 101 # 'update_monorail_bug': False,
102 # 'dive_rate_threshold': 0.4, 102 # 'dive_rate_threshold': 0.4,
103 # 'max_dive_in_a_row': 4, 103 # 'max_dive_in_a_row': 4,
104 # } 104 # }
105 check_flake_settings = ndb.JsonProperty(indexed=False, default={}) 105 check_flake_settings = ndb.JsonProperty(indexed=False, default={})
106
107 # A dict containing try job settings for identifying a cl that introduced
108 # test flakiness.
109 check_flake_try_job_settings = ndb.JsonProperty(indexed=False, default={})
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698