OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from pipeline_utils import pipelines |
| 6 |
| 7 |
| 8 # TODO(stgao): remove BasePipeline after http://crrev.com/810193002 is landed. |
| 9 class BasePipeline(pipelines.AppenginePipeline): # pragma: no cover |
| 10 def run_test(self, *args, **kwargs): |
| 11 pass |
| 12 |
| 13 def finalized_test(self, *args, **kwargs): |
| 14 pass |
| 15 |
| 16 def callback(self, **kwargs): |
| 17 pass |
| 18 |
| 19 def run(self, *args, **kwargs): |
| 20 raise NotImplementedError() |
OLD | NEW |