From 14e1889372d2a2ff21d95ded406767d2fe18c7b1 Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Tue, 6 Jun 2017 15:14:57 -0700 Subject: [PATCH] Disable verify-gofmt bazel test --- hack/BUILD | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/hack/BUILD b/hack/BUILD index b78a10a521..24172447c5 100644 --- a/hack/BUILD +++ b/hack/BUILD @@ -27,21 +27,23 @@ sh_test( tags = ["manual"], ) -sh_test( - name = "verify-gofmt", - srcs = ["verify-gofmt.sh"], - data = [ - "//:all-srcs", - "@io_bazel_rules_go_toolchain//:toolchain", - ], - tags = ["manual"], -) +# 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", +# ], +# tags = ["manual"], +#) test_suite( name = "verify-all", tags = ["manual"], tests = [ "verify-boilerplate", - "verify-gofmt", + # "verify-gofmt", ], )