(ctx context.Context, workspace string, extraArgs ...string)
| 249 | } |
| 250 | |
| 251 | func (f *Framework) DevPodWorkspaceDelete(ctx context.Context, workspace string, extraArgs ...string) error { |
| 252 | baseArgs := []string{"delete", workspace, "--ignore-not-found"} |
| 253 | baseArgs = append(baseArgs, extraArgs...) |
| 254 | |
| 255 | return f.ExecCommand(ctx, false, true, fmt.Sprintf("Successfully deleted workspace '%s'", workspace), baseArgs) |
| 256 | } |
| 257 | |
| 258 | func (f *Framework) SetupGPG(tmpDir string) error { |
| 259 | if _, err := exec.LookPath("gpg"); err != nil { |
no test coverage detected