(ctx context.Context, args ...string)
| 213 | } |
| 214 | |
| 215 | func (f *Framework) DevPodProviderUpdate(ctx context.Context, args ...string) error { |
| 216 | baseArgs := []string{"provider", "update"} |
| 217 | baseArgs = append(baseArgs, args...) |
| 218 | err := f.ExecCommand(ctx, false, false, "", baseArgs) |
| 219 | if err != nil { |
| 220 | return fmt.Errorf("devpod provider update failed: %s", err.Error()) |
| 221 | } |
| 222 | return nil |
| 223 | } |
| 224 | |
| 225 | func (f *Framework) DevPodMachineCreate(args []string) error { |
| 226 | baseArgs := []string{"machine", "create"} |
no test coverage detected