Skip to content

Commit 7342c9e

Browse files
committed
Disable vet as part of go test
`go vet` implicitely runs as part of `go test`, but we already have `make lint-go-vet`. Ref: https://pkg.go.dev/cmd/go#hdr-Test_packages
1 parent 3ee5ee2 commit 7342c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ test: test-frontend test-backend ## test everything
414414
.PHONY: test-backend
415415
test-backend: ## test frontend files
416416
@echo "Running go test with $(GOTESTFLAGS) -tags '$(TEST_TAGS)'..."
417-
@$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' $(GO_TEST_PACKAGES)
417+
@$(GO) test $(GOTESTFLAGS) -tags='$(TEST_TAGS)' -vet=off $(GO_TEST_PACKAGES)
418418

419419
.PHONY: test-frontend
420420
test-frontend: node_modules ## test backend files

0 commit comments

Comments
 (0)