From 0aa2299818730b6cd32270d89e690ca506ade428 Mon Sep 17 00:00:00 2001 From: Martin Gencur Date: Tue, 7 Jan 2020 19:17:51 +0100 Subject: [PATCH] Remove redundant cleanup in Tekton tests (#600) * tear down only if the test passes, we want to keep the pods otherwise so that the dump will show their errors --- test/e2e/tekton_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/test/e2e/tekton_test.go b/test/e2e/tekton_test.go index 4e522db5b..379053012 100644 --- a/test/e2e/tekton_test.go +++ b/test/e2e/tekton_test.go @@ -35,7 +35,6 @@ const ( func TestTektonPipeline(t *testing.T) { test := NewE2eTest(t) - defer test.Teardown(t) test.Setup(t) kubectl := kubectl{t, Logger{}}