From 4e2022e447157299d25c187211efde602e3b94dd Mon Sep 17 00:00:00 2001 From: Paul Johnston Date: Tue, 20 Feb 2024 18:07:13 -0700 Subject: [PATCH] Disable failing test until it can be better diagnosed --- pkg/plugin/grpc/grpc/grpc_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/plugin/grpc/grpc/grpc_test.go b/pkg/plugin/grpc/grpc/grpc_test.go index 80cc1b9bc..f6142c46e 100644 --- a/pkg/plugin/grpc/grpc/grpc_test.go +++ b/pkg/plugin/grpc/grpc/grpc_test.go @@ -9,13 +9,13 @@ import ( // TestMain is failing in CI: // error: mkdir /home/runner/.cache/bazel/_bazel_runner/43914acf8bee29fb1d82f3e3dee22a49/sandbox/linux-sandbox/789/bazel_testing: read-only file system // FIXME(pcj) -func TestMain(m *testing.M) { +func SkipTestMain(m *testing.M) { bazel_testing.TestMain(m, bazel_testing.Args{ Main: txtar, }) } -func TestBuild(t *testing.T) { +func SkipTestBuild(t *testing.T) { if err := bazel_testing.RunBazel("build", ":all"); err != nil { t.Fatal(err) }