From 6bee57e75bd3de5d7dc9c55b65f955265b09e745 Mon Sep 17 00:00:00 2001 From: mitchell Date: Fri, 17 Jul 2026 17:09:45 -0400 Subject: [PATCH] Try to avoid macOS unit test failures due to gotestfmt crash.. --- activestate.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activestate.yaml b/activestate.yaml index d4e08cc354..040a23dd7d 100644 --- a/activestate.yaml +++ b/activestate.yaml @@ -335,6 +335,8 @@ scripts: standalone: true description: Runs unit tests (not integration tests) value: | + # Disable CGo to prevent clang warnings from crashing gotestfmt. + export CGO_ENABLED=0 go test -vet=off -v `go list ./... | grep -v integration | grep -v automation | grep -v expect | grep -v state-svc | grep -v state-offline` $@ - name: integration-tests language: bash