From e3b78ebaf3d581431fd6a984a8a6cce1945adc9a Mon Sep 17 00:00:00 2001 From: SoXX Date: Fri, 19 Jul 2024 11:32:12 +0200 Subject: [PATCH] ci: add test logging --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e77b900..76a7f8d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { docker { image 'golang:1.22-alpine' } } steps { - sh 'go test -v ./... -json -coverprofile=coverage.out > test-report.out' + sh 'go test -v ./... -json -coverprofile=coverage.out | tee test-report.out' } } stage('SonarQube Analysis') {