(ctx context.Context, args ...string)
| 192 | } |
| 193 | |
| 194 | func (f *Framework) DevPodProviderAdd(ctx context.Context, args ...string) error { |
| 195 | baseArgs := []string{"provider", "add"} |
| 196 | baseArgs = append(baseArgs, args...) |
| 197 | err := f.ExecCommand(ctx, false, false, "", baseArgs) |
| 198 | if err != nil { |
| 199 | return fmt.Errorf("devpod provider add failed: %s", err.Error()) |
| 200 | } |
| 201 | return nil |
| 202 | } |
| 203 | |
| 204 | func (f *Framework) DevPodProviderDelete(ctx context.Context, args ...string) error { |
| 205 | baseArgs := []string{"provider", "delete"} |
no test coverage detected