test and integrationtest can now be executed separately.

This commit is contained in:
Erik Brakkee 2024-11-12 20:02:57 +01:00
parent e20d4940f9
commit bd65351e6e

View File

@ -16,7 +16,10 @@ vet: fmt
go vet ./...
test: build
go test -count=1 ${TESTFLAGS} ./...
go test -count=1 ${TESTFLAGS} ./pkg/... ./cmd/...
integrationtest: build
go test -count=1 ${TESTFLAGS} ./integrationtest/...
build: generate vet
mkdir -p bin