From db6348f191c5d907c13b6049dd891daec44761b5 Mon Sep 17 00:00:00 2001 From: kmetin Date: Thu, 19 Oct 2023 18:38:55 +0300 Subject: [PATCH] try fixing tests --- .github/workflows/test-all.yaml | 2 +- Makefile | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index d66fd8428..1ecb75df5 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -70,4 +70,4 @@ jobs: - name: "Run All Tests" run: | - make test-dmt + make test diff --git a/Makefile b/Makefile index 72f527b92..0ace23886 100644 --- a/Makefile +++ b/Makefile @@ -23,10 +23,7 @@ build-dmt: CGO_ENABLED=0 go build -tags base,migration,config,home,version,hazelcastinternal,hazelcastinternaltest -ldflags "$(LDFLAGS)" -o build/$(BINARY_NAME) ./cmd/clc test: - go test -tags base,std,hazelcastinternal,hazelcastinternaltest -p 1 $(TEST_FLAGS) ./... - -test-dmt: - go test -tags base,migration,config,home,version,hazelcastinternal,hazelcastinternaltest -p 1 $(TEST_FLAGS) ./... + go test -tags base,std,migration,config,home,version,hazelcastinternal,hazelcastinternaltest -p 1 $(TEST_FLAGS) ./... test-cover: go test -tags base,std,hazelcastinternal,hazelcastinternaltest -p 1 $(TEST_FLAGS) -coverprofile=coverage.out -coverpkg $(PACKAGES) -coverprofile=$(COVERAGE_OUT) ./...