()
| 339 | type ContainerOpts func(*runtime.ContainerConfig) |
| 340 | |
| 341 | func WithTestLabels() ContainerOpts { |
| 342 | return func(c *runtime.ContainerConfig) { |
| 343 | c.Labels = map[string]string{"key": "value"} |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | func WithTestAnnotations() ContainerOpts { |
| 348 | return func(c *runtime.ContainerConfig) { |
no outgoing calls
no test coverage detected
searching dependent graphs…