From c202fb0f15fa874fd076182b945c475e910686d5 Mon Sep 17 00:00:00 2001 From: Aarush Bhat Date: Wed, 12 Jan 2022 18:52:22 +0530 Subject: [PATCH] kyverno/test: print test summary of kyverno test results (#2944) Signed-off-by: sloorush Co-authored-by: shuting Co-authored-by: Vyankatesh Kudtarkar --- pkg/kyverno/test/test_command.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/kyverno/test/test_command.go b/pkg/kyverno/test/test_command.go index 3fd4d43457..ba4cae42bd 100644 --- a/pkg/kyverno/test/test_command.go +++ b/pkg/kyverno/test/test_command.go @@ -339,6 +339,8 @@ func testCommandExecute(dirPath []string, valuesFile string, fileName string, gi os.Exit(1) } + fmt.Printf("\nTest Summary: %d tests passed and %d tests failed\n", rc.Pass+rc.Skip, rc.Fail) + os.Exit(0) return rc, nil }