(ctx context.Context, query RunQuery)
| 237 | } |
| 238 | |
| 239 | func (s *deleteTaskStore) ListTaskRuns(ctx context.Context, query RunQuery) ([]Run, error) { |
| 240 | if err, ok := s.listTaskRunsErrByID[strings.TrimSpace(query.TaskID)]; ok { |
| 241 | return nil, err |
| 242 | } |
| 243 | return s.inMemoryManagerStore.ListTaskRuns(ctx, query) |
| 244 | } |
| 245 | |
| 246 | func (s *deleteTaskStore) ListDependents( |
| 247 | ctx context.Context, |
nothing calls this directly
no test coverage detected