Merge pull request #10491 from priyawadhwa/skaffold-flag

Set --interactive=false flag on skaffold test
pull/10454/head
Medya Ghazizadeh 2021-02-16 15:46:04 -08:00 committed by GitHub
commit 3bdb549339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ func TestSkaffold(t *testing.T) {
}()
// make sure "skaffold run" exits without failure
cmd := exec.CommandContext(ctx, tf.Name(), "run", "--minikube-profile", profile, "--kube-context", profile, "--status-check=true", "--port-forward=false")
cmd := exec.CommandContext(ctx, tf.Name(), "run", "--minikube-profile", profile, "--kube-context", profile, "--status-check=true", "--port-forward=false", "--interactive=false")
cmd.Dir = "testdata/skaffold"
rr, err = Run(t, cmd)
if err != nil {