()
| 241 | return self.trials.count_by_state_unsynced(base.JOB_STATE_NEW) |
| 242 | |
| 243 | def get_n_done(): |
| 244 | return self.trials.count_by_state_unsynced(base.JOB_STATE_DONE) |
| 245 | |
| 246 | def get_n_unfinished(): |
| 247 | unfinished_states = [base.JOB_STATE_NEW, base.JOB_STATE_RUNNING] |
nothing calls this directly
no test coverage detected