We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32826ff commit 3e03d0bCopy full SHA for 3e03d0b
Makefile
@@ -73,6 +73,7 @@ EXTRA_GOFLAGS ?=
73
MAKE_VERSION := $(shell "$(MAKE)" -v | cat | head -n 1)
74
MAKE_EVIDENCE_DIR := .make_evidence
75
76
+GOTESTFLAGS := -vet=off
77
ifeq ($(RACE_ENABLED),true)
78
GOFLAGS += -race
79
GOTESTFLAGS += -race
@@ -413,7 +414,7 @@ test: test-frontend test-backend ## test everything
413
414
.PHONY: test-backend
415
test-backend: ## test frontend files
416
@echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
- @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' -vet=off $(GO_TEST_PACKAGES)
417
+# @$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES)
418
419
.PHONY: test-frontend
420
test-frontend: node_modules ## test backend files
0 commit comments