From 56e31e790d6fcb288ca7528f42107444564306b3 Mon Sep 17 00:00:00 2001 From: Ben Eggers <64657842+beggers@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:25:51 -0700 Subject: [PATCH] [BUG] Fix Golang codebase test flakiness --- go/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/Makefile b/go/Makefile index 5e3e5769bfd6..286fd5388a04 100644 --- a/go/Makefile +++ b/go/Makefile @@ -4,7 +4,7 @@ build: go build -v -o bin/logservice ./cmd/logservice/ test: build - go test -cover ./... + go test -p 1 -cover ./... lint: #brew install golangci-lint