From cf01cbf79686ea84263f7deb297e5478f4bb056b Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Mon, 10 Oct 2022 11:46:59 -0400 Subject: [PATCH] bypass Makefile and run go test command modified --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 720782d02..151d81bd0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline { echo 'Testing ...' sh 'env' sh 'go env' - sh '/usr/local/go/bin/go test -p 1 -v ./...' + sh '/usr/local/go/bin/go test -p 1 -v ' //sh 'make test' } }