We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa25f8 commit 14e1889Copy full SHA for 14e1889
hack/BUILD
@@ -27,21 +27,23 @@ sh_test(
27
tags = ["manual"],
28
)
29
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
-)
+# Disable gofmt test until we can figure out how to access the gofmt binary.
+# https://github.com/bazelbuild/rules_go/issues/511
+#sh_test(
+# name = "verify-gofmt",
+# srcs = ["verify-gofmt.sh"],
+# data = [
+# "//:all-srcs",
+# "@io_bazel_rules_go_toolchain//:toolchain",
+# ],
39
+# tags = ["manual"],
40
+#)
41
42
test_suite(
43
name = "verify-all",
44
45
tests = [
46
"verify-boilerplate",
- "verify-gofmt",
47
+ # "verify-gofmt",
48
],
49
0 commit comments