Returns the current number of trial runs which failed
(self)
| 153 | return self.count_by_state_unsynced(base.JOB_STATE_DONE) |
| 154 | |
| 155 | def count_failed_trials(self): |
| 156 | """ |
| 157 | Returns the current number of trial runs which failed |
| 158 | """ |
| 159 | return self.count_by_state_unsynced(base.JOB_STATE_ERROR) |
| 160 | |
| 161 | def count_cancelled_trials(self): |
| 162 | """ |