| Index: appengine/findit/model/wf_analysis_status.py
|
| diff --git a/appengine/findit/model/wf_analysis_status.py b/appengine/findit/model/wf_analysis_status.py
|
| deleted file mode 100644
|
| index 258ba3def8c3d1fe395818b3b7e15e56e52e7192..0000000000000000000000000000000000000000
|
| --- a/appengine/findit/model/wf_analysis_status.py
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -# 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.
|
| -
|
| -
|
| -# Represent status of the analysis of a Chromium waterfall build failure.
|
| -# TODO(stgao): Categorize statuses.
|
| -PENDING = 0
|
| -ANALYZING = 10
|
| -ANALYZED = 70
|
| -ERROR = 80
|
| -SKIPPED = 100
|
| -
|
| -
|
| -STATUS_TO_DESCRIPTION = {
|
| - PENDING: 'Pending',
|
| - ANALYZING: 'Analyzing',
|
| - ANALYZED: 'Analyzed',
|
| - ERROR: 'Error'
|
| -}
|
| -
|
| -
|
| -TRY_JOB_STATUS_TO_DESCRIPTION = {
|
| - PENDING: 'Pending',
|
| - ANALYZING: 'Running',
|
| - ANALYZED: 'Completed',
|
| - ERROR: 'Error',
|
| - SKIPPED: 'Skipped'
|
| -}
|
| -
|
| -
|
| -SWARMING_STATUS_TO_DESCRIPTION = {
|
| - PENDING: 'Pending',
|
| - ANALYZING: 'Running',
|
| - ANALYZED: 'Completed',
|
| - ERROR: 'Error'
|
| -}
|
|
|