diff --git a/BUILD.bazel b/BUILD.bazel index 564da02b8a6..582d80c588c 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -555,7 +555,10 @@ sh_test( "tclint.toml", "//bazel:tclint", ], - tags = ["local"], + tags = [ + "local", + "manual", + ], ) # --- TCL formatting check (tclfmt --check) -------------------------------- @@ -569,7 +572,10 @@ sh_test( "tclint.toml", "//bazel:tclfmt", ], - tags = ["local"], + tags = [ + "local", + "manual", + ], ) # --- TCL auto-format only (tclfmt --in-place) ----------------------------- @@ -596,7 +602,10 @@ sh_test( "MODULE.bazel", "@buildifier_prebuilt//:buildifier", ], - tags = ["local"], + tags = [ + "local", + "manual", + ], ) # --- Bazel formatting check (buildifier -mode=check -lint=off) ------------ @@ -610,7 +619,10 @@ sh_test( "MODULE.bazel", "@buildifier_prebuilt//:buildifier", ], - tags = ["local"], + tags = [ + "local", + "manual", + ], ) # --- Bazel auto-format only (buildifier -mode=fix) ------------------------ @@ -629,6 +641,7 @@ sh_binary( test_suite( name = "lint_test", + tags = ["manual"], tests = [ ":fmt_bzl_test", ":fmt_tcl_test", diff --git a/docs/BUILD.bazel b/docs/BUILD.bazel index cc909308600..f17bf2c6469 100644 --- a/docs/BUILD.bazel +++ b/docs/BUILD.bazel @@ -67,5 +67,6 @@ man_pages( "//docs/src/scripts:manpage.py", "//docs/src/scripts:extract_utils.py", ], + tags = ["manual"], visibility = ["//visibility:public"], )