From bd65351e6ea9bc2b2c52e585da6868ebd3ff9f94 Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Tue, 12 Nov 2024 20:02:57 +0100 Subject: [PATCH] test and integrationtest can now be executed separately. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1e1272..5f34679 100644 --- a/Makefile +++ b/Makefile @@ -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