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

Unified Diff: appengine/findit/waterfall/base_pipeline.py

Issue 820113002: [Findit] Add a sub-pipeline to detect first-known failure. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Address comments Created 5 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 side-by-side diff with in-line comments
Download patch
Index: appengine/findit/waterfall/base_pipeline.py
diff --git a/appengine/findit/waterfall/base_pipeline.py b/appengine/findit/waterfall/base_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..06ec8bb04682f4ffbc02f17836ccfab1b5a1b4d1
--- /dev/null
+++ b/appengine/findit/waterfall/base_pipeline.py
@@ -0,0 +1,20 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+from pipeline_utils import pipelines
+
+
+# TODO(stgao): remove BasePipeline after http://crrev.com/810193002 is landed.
+class BasePipeline(pipelines.AppenginePipeline): # pragma: no cover
+ def run_test(self, *args, **kwargs):
+ pass
+
+ def finalized_test(self, *args, **kwargs):
+ pass
+
+ def callback(self, **kwargs):
+ pass
+
+ def run(self, *args, **kwargs):
+ raise NotImplementedError()
« no previous file with comments | « appengine/findit/model/test/build_test.py ('k') | appengine/findit/waterfall/build_failure_analysis_pipelines.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698