From 712d06de5cd9f1c8d982b64e9101918d5f71ab5a Mon Sep 17 00:00:00 2001 From: Adam Perry Date: Tue, 7 Jul 2026 18:59:13 +0000 Subject: [PATCH] codex: fix CI failure on PR #31455 --- defs.bzl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/defs.bzl b/defs.bzl index 788d9e62f1..09a603c0d5 100644 --- a/defs.bzl +++ b/defs.bzl @@ -209,6 +209,7 @@ def _workspace_root_sharded_test_suite(name, shard_count, env, **kwargs): native.test_suite( name = name, + tags = [tag for tag in kwargs.get("tags", []) if tag != "manual"], tests = shard_targets, ) @@ -613,7 +614,7 @@ def codex_rust_crate( target_compatible_with = WINE_TEST_TARGET_COMPATIBLE_WITH, # This wrapper has no Rust sources and transitions a data # dependency to a Windows toolchain the lint does not register. - tags = test_tags + ["no-argument-comment-lint"], + tags = test_tags + ["manual", "no-argument-comment-lint"], **wine_test_kwargs )