From 1c424fad74782882e889fae063ca14d2258102ce Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 1 Apr 2021 18:48:49 -0400 Subject: [PATCH] Try again to get CI code coverage working --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3ff87cb..49b0232 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { steps { sh "go get github.com/axw/gocov/..." sh "go get github.com/AlekSi/gocov-xml" - sh "go run github.com/axw/gocov/gocov test | go run github.com/AlekSi/gocov-xml > coverage.xml" + sh "go run github.com/axw/gocov/gocov test ./... | go run github.com/AlekSi/gocov-xml > coverage.xml" } } }