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

Unified Diff: appengine/findit/waterfall/test/waterfall_config_test.py

Issue 2104113002: [Findit] Add settings for actions after culprits or suspects are identified. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@group_same_failures
Patch Set: Created 4 years, 6 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/waterfall/test/waterfall_config_test.py
diff --git a/appengine/findit/waterfall/test/waterfall_config_test.py b/appengine/findit/waterfall/test/waterfall_config_test.py
index 15d9ec61b5332c995f0779ec90ccec047ae0546d..a2fe4f277a2a8bd7b700eaa797a1a5ca5a73c5f0 100644
--- a/appengine/findit/waterfall/test/waterfall_config_test.py
+++ b/appengine/findit/waterfall/test/waterfall_config_test.py
@@ -124,4 +124,11 @@ class MastersTest(wf_testcase.WaterfallTestCase):
waterfall_config.ShouldSkipTestTryJobs('master2', 'builder3'))
self.assertTrue(
waterfall_config.ShouldSkipTestTryJobs('master2', 'builder2'))
-
+
+ def testGetActionSettings(self):
+ self.assertEqual(
+ {
+ 'cr_notification_build_threshold': 2,
+ 'cr_notification_latency_limit_seconds': 1800,
+ },
+ waterfall_config.GetActionSettings())

Powered by Google App Engine
This is Rietveld 408576698