diff --git a/test/oncluster/scenario_basic_test.go b/test/oncluster/scenario_basic_test.go index c1bd4390..ac56a519 100644 --- a/test/oncluster/scenario_basic_test.go +++ b/test/oncluster/scenario_basic_test.go @@ -33,6 +33,7 @@ func TestBasicUpload(t *testing.T) { "-p", funcPath, "-r", e2e.GetRegistry(), "--remote", + "--verbose", ) defer knFunc.Exec("delete", "-p", funcPath) @@ -49,7 +50,8 @@ func TestBasicUpload(t *testing.T) { knFunc.Exec("deploy", "-r", e2e.GetRegistry(), "-p", funcPath, - "--remote") + "--remote", + "--verbose") e2e.NewRevisionCheck(t, previousServiceRevision, funcName) // Wait New Service Revision // -- Assertions -- @@ -88,6 +90,7 @@ func TestBasicGit(t *testing.T) { "-p", funcPath, "-r", e2e.GetRegistry(), "--remote", + "--verbose", "--git-url", remoteRepo.ClusterCloneURL, ) defer knFunc.Exec("delete", "-p", funcPath) @@ -108,7 +111,8 @@ func TestBasicGit(t *testing.T) { knFunc.Exec("deploy", "-r", e2e.GetRegistry(), "-p", funcPath, - "--remote") + "--remote", + "--verbose") e2e.NewRevisionCheck(t, previousServiceRevision, funcName) // Wait New Service Revision // -- Assertions -- diff --git a/test/oncluster/scenario_context-dir_test.go b/test/oncluster/scenario_context-dir_test.go index 152d9159..503fe17f 100644 --- a/test/oncluster/scenario_context-dir_test.go +++ b/test/oncluster/scenario_context-dir_test.go @@ -47,6 +47,7 @@ func TestContextDirFunc(t *testing.T) { "-p", funcPath, "-r", e2e.GetRegistry(), "--remote", + "--verbose", "--git-url", remoteRepo.ClusterCloneURL, "--git-dir", funcContextDir, ) diff --git a/test/oncluster/scenario_from-cli-local_test.go b/test/oncluster/scenario_from-cli-local_test.go index a9b55162..ef330f60 100644 --- a/test/oncluster/scenario_from-cli-local_test.go +++ b/test/oncluster/scenario_from-cli-local_test.go @@ -22,6 +22,7 @@ func TestFromCliBuildLocal(t *testing.T) { var funcPath = filepath.Join(t.TempDir(), funcName) knFunc := common.NewKnFuncShellCli(t) + knFunc.ShouldDumpOnSuccess = false knFunc.Exec("create", "-l", "node", funcPath) defer os.RemoveAll(funcPath) diff --git a/test/oncluster/scenario_from-cli_test.go b/test/oncluster/scenario_from-cli_test.go index 03368c2a..d9b03c35 100644 --- a/test/oncluster/scenario_from-cli_test.go +++ b/test/oncluster/scenario_from-cli_test.go @@ -51,6 +51,7 @@ func TestFromCliDefaultBranch(t *testing.T) { "-r", e2e.GetRegistry(), "-p", funcPath, "--remote", + "--verbose", "--git-url", remoteRepo.ClusterCloneURL) defer knFunc.Exec("delete", "-p", funcPath) @@ -92,6 +93,7 @@ func TestFromCliFeatureBranch(t *testing.T) { "-r", e2e.GetRegistry(), "-p", funcPath, "--remote", + "--verbose", "--git-url", remoteRepo.ClusterCloneURL, "--git-branch", "feature/branch") @@ -130,6 +132,7 @@ func TestFromCliContextDirFunc(t *testing.T) { "-r", e2e.GetRegistry(), "-p", funcPath, "--remote", + "--verbose", "--git-url", remoteRepo.ClusterCloneURL, "--git-dir", funcContextDir) diff --git a/test/oncluster/scenario_revision_test.go b/test/oncluster/scenario_revision_test.go index cd062927..de8bbfeb 100644 --- a/test/oncluster/scenario_revision_test.go +++ b/test/oncluster/scenario_revision_test.go @@ -114,7 +114,8 @@ func GitRevisionCheck( knFunc.Exec("deploy", "-r", e2e.GetRegistry(), "-p", funcPath, - "--remote") + "--remote", + "--verbose") defer knFunc.Exec("delete", "-p", funcPath) // -- Assertions -- diff --git a/test/oncluster/scenario_runtime_test.go b/test/oncluster/scenario_runtime_test.go index 405e35ec..393c3a25 100644 --- a/test/oncluster/scenario_runtime_test.go +++ b/test/oncluster/scenario_runtime_test.go @@ -73,6 +73,7 @@ func runtimeImpl(t *testing.T, lang string, builder string) { "--registry", e2e.GetRegistry(), "--path", funcPath, "--remote", + "--verbose", "--builder", builder, "--git-url", remoteRepo.ClusterCloneURL)