From 1e02431265c02ce92e2ab3c951ffbadfc356fd08 Mon Sep 17 00:00:00 2001 From: Ricky Stewart Date: Fri, 26 Mar 2021 11:16:49 -0500 Subject: [PATCH] bazel: mark pprofui test as being broken in Bazel The failure looks like this: ``` === RUN TestServer/0 server_test.go:51: body does not contain "pprof": neither $XDG_CONFIG_HOME nor $HOME are defined === RUN TestServer/1 server_test.go:51: body does not contain "pprof": neither $XDG_CONFIG_HOME nor $HOME are defined === RUN TestServer/2 server_test.go:51: body does not contain "pprof": neither $XDG_CONFIG_HOME nor $HOME are defined ``` Release note: None --- pkg/server/debug/pprofui/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/server/debug/pprofui/BUILD.bazel b/pkg/server/debug/pprofui/BUILD.bazel index 9c2cba83a06a..358ca0e187cf 100644 --- a/pkg/server/debug/pprofui/BUILD.bazel +++ b/pkg/server/debug/pprofui/BUILD.bazel @@ -29,4 +29,5 @@ go_test( size = "small", srcs = ["server_test.go"], embed = [":pprofui"], + tags = ["broken_in_bazel"], )