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() |