changes test command

This commit is contained in:
Hyatt 2022-03-14 14:33:03 -05:00
parent b53f468a99
commit 2004937265
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

4
Jenkinsfile vendored
View File

@ -86,8 +86,8 @@ podTemplate(
cd "/go/src/${env.JOB_BASE_NAME}"
go get -d -v ./...
go install -v ./...
go test -short -coverprofile=cover.out `go list ./...`
go test -v 2>&1 | go-junit-report > report.xml
go test -short -coverprofile=cover.out ./...
go test -v ./... 2>&1 | go-junit-report > report.xml
"""
}
}