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

Side by Side 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 unified diff | Download patch
OLDNEW
(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()
OLDNEW
« 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