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