From 3cd604e0560767a389b42ab7563cab53a4ce665e Mon Sep 17 00:00:00 2001 From: Jordan Halterman Date: Fri, 7 Apr 2023 01:50:59 -0700 Subject: [PATCH] Enable verbose testing for all Go tests (#66) --- VERSION | 2 +- pkg/test/main.go | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index 9889c59..781dcb0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.3-dev +1.1.3 diff --git a/pkg/test/main.go b/pkg/test/main.go index da1b557..d43d9a5 100644 --- a/pkg/test/main.go +++ b/pkg/test/main.go @@ -56,11 +56,9 @@ func Main(suites []TestingSuite) { } // Hack to enable verbose testing. - if config.Verbose { - os.Args = []string{ - os.Args[0], - "-test.v", - } + os.Args = []string{ + os.Args[0], + "-test.v", } testing.Main(func(_, _ string) (bool, error) { return true, nil }, tests, nil, nil)