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

Unified Diff: appengine/findit/model/triage_status.py

Issue 2043973002: [Findit] Fracas crash triage dashboard (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Surpass pylint errors. Created 4 years, 6 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/model/triage_status.py
diff --git a/appengine/findit/waterfall/try_job_type.py b/appengine/findit/model/triage_status.py
similarity index 68%
copy from appengine/findit/waterfall/try_job_type.py
copy to appengine/findit/model/triage_status.py
index 6da35e2f2fe910e29e4e96adb766ec56787df0db..323a52a91d1b686a8d4b3b73e920ff794f763654 100644
--- a/appengine/findit/waterfall/try_job_type.py
+++ b/appengine/findit/model/triage_status.py
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-
-class TryJobType(object):
- COMPILE = 'compile'
- TEST = 'test'
+UNTRIAGED = 0
+TRIAGED_INCORRECT = 1
+TRIAGED_CORRECT = 2
+TRIAGED_UNSURE = 3

Powered by Google App Engine
This is Rietveld 408576698