From 95efc7b35bcaa3d9d621da0445dcfa86a3c29889 Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 5 Mar 2025 10:15:31 +0100 Subject: [PATCH] Disable vet=off again (#33794) Ref: https://github.com/go-gitea/gitea/issues/33792 To avoid slowing unit-test down. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0cc9269771..8fc2bc2b0a 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ EXTRA_GOFLAGS ?= MAKE_VERSION := $(shell "$(MAKE)" -v | cat | head -n 1) MAKE_EVIDENCE_DIR := .make_evidence -GOTESTFLAGS ?= -vet=off +GOTESTFLAGS ?= ifeq ($(RACE_ENABLED),true) GOFLAGS += -race GOTESTFLAGS += -race