From b26bd14e8e004e91a5187875778ebd86abb334de Mon Sep 17 00:00:00 2001 From: Quinn Klassen Date: Sat, 23 Nov 2024 20:34:34 -0800 Subject: [PATCH] add race back --- internal/cmd/build/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/build/main.go b/internal/cmd/build/main.go index 71b5e2ecd..500d25ab6 100644 --- a/internal/cmd/build/main.go +++ b/internal/cmd/build/main.go @@ -170,7 +170,7 @@ func (b *builder) integrationTest() error { } // Run integration test - args := []string{"go", "test", "-tags", "protolegacy", "-count", "1", "-v", "-timeout", "10m"} + args := []string{"go", "test", "-tags", "protolegacy", "-count", "1", "-race", "-v", "-timeout", "10m"} if *runFlag != "" { args = append(args, "-run", *runFlag) }