added test prefix.

This commit is contained in:
Erik Brakkee 2024-11-22 21:38:21 +01:00
parent b7b9e04f3b
commit 940ab84d0e

View File

@ -21,12 +21,12 @@ vet: fmt
test: build test: build
mkdir -p testout mkdir -p testout
go test -count=1 -coverprofile=testout/coverage.out -json ${TESTFLAGS} ./pkg/... ./cmd/... 2>&1 | \ go test -count=1 -coverprofile=testout/coverage.out -json ${TESTFLAGS} ./pkg/... ./cmd/... 2>&1 | \
go2junit testout/junit go2junit testout/junit unit-
integrationtest: build integrationtest: build
mkdir -p testout mkdir -p testout
go test -count=1 ${TESTFLAGS} ./integrationtest/... -json 2>&1 | \ go test -count=1 ${TESTFLAGS} ./integrationtest/... -json 2>&1 | \
go2junit testout/integrationtest go2junit testout/integrationtest integration-
build: generate vet build: generate vet
mkdir -p bin mkdir -p bin