From e1516667a40e0ca05c5a724044da0c3fd9ba06a9 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 1 Apr 2021 18:45:35 -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 d7a5c2d..3ff87cb 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" } } }