| Index: appengine/findit/model/wf_analysis.py
|
| diff --git a/appengine/findit/model/wf_analysis.py b/appengine/findit/model/wf_analysis.py
|
| index cce8b1714da12a39bb26a1bdc89674c397ce58c7..2838adea93c03ac67cdba4ecd42d05e4cdaf226f 100644
|
| --- a/appengine/findit/model/wf_analysis.py
|
| +++ b/appengine/findit/model/wf_analysis.py
|
| @@ -111,6 +111,10 @@ class WfAnalysis(BaseBuildModel):
|
| # for legacy data we just assume all of them are tests if not compile.
|
| return failure_type.TEST
|
|
|
| + @property
|
| + def failure_type_str(self):
|
| + return failure_type.GetDescriptionForFailureType(self.failure_type)
|
| +
|
| # When the build cycle started.
|
| build_start_time = ndb.DateTimeProperty(indexed=True)
|
| # Whether the build cycle has completed.
|
|
|