From d897157cc1b7fce07f5c1b76fdedbb8691a5a18b Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Fri, 29 Jan 2021 11:24:21 +0000 Subject: [PATCH] Further attempt to avoid gocover-cobertura to interfere with go.mod --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3bbff13d..7d365a42 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ test: image: golang:1.14 script: - go test -v -cover -coverprofile=cover.out ./... - - go get github.com/boumenot/gocover-cobertura + - (cd /tmp && go get github.com/boumenot/gocover-cobertura) - gocover-cobertura < cover.out > cover.xml artifacts: reports: -- GitLab