From fd4ab574e5df46fb58d3bfc9a5f606d8b52b2299 Mon Sep 17 00:00:00 2001 From: starr-openai Date: Tue, 2 Jun 2026 23:28:24 -0700 Subject: [PATCH] fix: keep v8 runtime bazel tests explicit --- codex-rs/code-mode-runtime/BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/codex-rs/code-mode-runtime/BUILD.bazel b/codex-rs/code-mode-runtime/BUILD.bazel index b34fb8e108..3f8cee19a1 100644 --- a/codex-rs/code-mode-runtime/BUILD.bazel +++ b/codex-rs/code-mode-runtime/BUILD.bazel @@ -8,4 +8,8 @@ codex_rust_crate( "//conditions:default": ["sandbox"], }), deps_extra = ["@crates//:v8"], + # Ordinary Bazel CI excludes the old V8-backed code-mode unit tests. Keep + # the moved runtime tests explicit so wildcard test queries do not pull V8 + # back into the ordinary Bazel matrix. + test_tags = ["manual"], )