Skip to content

Commit 14e1889

Browse files
committed
Disable verify-gofmt bazel test
1 parent 5aa25f8 commit 14e1889

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

hack/BUILD

+12-10
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,23 @@ sh_test(
2727
tags = ["manual"],
2828
)
2929

30-
sh_test(
31-
name = "verify-gofmt",
32-
srcs = ["verify-gofmt.sh"],
33-
data = [
34-
"//:all-srcs",
35-
"@io_bazel_rules_go_toolchain//:toolchain",
36-
],
37-
tags = ["manual"],
38-
)
30+
# Disable gofmt test until we can figure out how to access the gofmt binary.
31+
# https://github.com/bazelbuild/rules_go/issues/511
32+
#sh_test(
33+
# name = "verify-gofmt",
34+
# srcs = ["verify-gofmt.sh"],
35+
# data = [
36+
# "//:all-srcs",
37+
# "@io_bazel_rules_go_toolchain//:toolchain",
38+
# ],
39+
# tags = ["manual"],
40+
#)
3941

4042
test_suite(
4143
name = "verify-all",
4244
tags = ["manual"],
4345
tests = [
4446
"verify-boilerplate",
45-
"verify-gofmt",
47+
# "verify-gofmt",
4648
],
4749
)

0 commit comments

Comments
 (0)