From cccc602492c595bd36712f372a4bd1f32e8ac870 Mon Sep 17 00:00:00 2001 From: Matt Mackay Date: Wed, 16 Nov 2022 07:48:23 -0500 Subject: [PATCH] build: set container related targets as manual --- py/tests/containers/BUILD.bazel | 3 +++ 1 file changed, 3 insertions(+) diff --git a/py/tests/containers/BUILD.bazel b/py/tests/containers/BUILD.bazel index c63b6c01..bd0fff8d 100644 --- a/py/tests/containers/BUILD.bazel +++ b/py/tests/containers/BUILD.bazel @@ -10,6 +10,7 @@ py_binary( "//py/tests/internal-deps/adder", "@pypi_colorama//:pkg", ], + tags = ["manual"], ) # py3_image container support reverts us back to the rules_python way of invoking the binary, @@ -26,10 +27,12 @@ py3_image( srcs = ["__main__.py"], main = "__main__.py", deps = [":main_bin"], + tags = ["manual"], ) container_test( name = "py_image_test", configs = ["py_image_test.yaml"], image = ":py_image", + tags = ["manual"], )