From 940ab84d0e8c188656b354131ce2a5c0d6c2bbf7 Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Fri, 22 Nov 2024 21:38:21 +0100 Subject: [PATCH] added test prefix. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9537101..e75a96f 100644 --- a/Makefile +++ b/Makefile @@ -21,12 +21,12 @@ vet: fmt test: build mkdir -p testout go test -count=1 -coverprofile=testout/coverage.out -json ${TESTFLAGS} ./pkg/... ./cmd/... 2>&1 | \ - go2junit testout/junit + go2junit testout/junit unit- integrationtest: build mkdir -p testout go test -count=1 ${TESTFLAGS} ./integrationtest/... -json 2>&1 | \ - go2junit testout/integrationtest + go2junit testout/integrationtest integration- build: generate vet mkdir -p bin