From cac89de4dc47ad1c6bb805566d023ab0ae30a277 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 1 Apr 2021 18:44:08 -0400 Subject: [PATCH] Try again to get CI code coverage working --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7111de6..d7a5c2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,8 +33,7 @@ pipeline { steps { sh "go get github.com/axw/gocov/..." sh "go get github.com/AlekSi/gocov-xml" - sh "go get github.com/gorilla/mux" - sh "go run github.com/axw/gocov/gocov test github.com/gorilla/mux | 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" } } }