Skip to content

Commit 3e03d0b

Browse files
committed
move -vet=off to GOTESTFLAGS
1 parent 32826ff commit 3e03d0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ EXTRA_GOFLAGS ?=
7373
MAKE_VERSION := $(shell "$(MAKE)" -v | cat | head -n 1)
7474
MAKE_EVIDENCE_DIR := .make_evidence
7575

76+
GOTESTFLAGS := -vet=off
7677
ifeq ($(RACE_ENABLED),true)
7778
GOFLAGS += -race
7879
GOTESTFLAGS += -race
@@ -413,7 +414,7 @@ test: test-frontend test-backend ## test everything
413414
.PHONY: test-backend
414415
test-backend: ## test frontend files
415416
@echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
416-
@$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' -vet=off $(GO_TEST_PACKAGES)
417+
# @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES)
417418

418419
.PHONY: test-frontend
419420
test-frontend: node_modules ## test backend files

0 commit comments

Comments
 (0)