From 17f25de6f257fd97a5ac587b39092490ce807440 Mon Sep 17 00:00:00 2001 From: Bui Quang Minh Date: Fri, 4 Oct 2024 14:14:38 +0700 Subject: [PATCH] Makefile: temporarily enable race detector when running test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0609cc6637..a6386d9aea 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ ios: @echo "Import \"$(GOBIN)/Geth.framework\" to use the library." test: all - $(GORUN) build/ci.go test --coverage + $(GORUN) build/ci.go test --coverage --race lint: ## Run linters. $(GORUN) build/ci.go lint