()
| 2206 | } |
| 2207 | |
| 2208 | func (r *runnableTraceWrapper) GetMetrics() map[string]any { |
| 2209 | c, ok := r.runner.(harness.Collectable) |
| 2210 | if !ok { |
| 2211 | return nil |
| 2212 | } |
| 2213 | return c.GetMetrics() |
| 2214 | } |
| 2215 | |
| 2216 | func getScaletestWorkspaces(ctx context.Context, client *codersdk.Client, owner, template string) ([]codersdk.Workspace, int, error) { |
| 2217 | var ( |
nothing calls this directly
no test coverage detected