Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Bolin
c5c355b19d bazel: shard slower Rust test targets 2026-04-22 21:25:07 -07:00
3 changed files with 9 additions and 0 deletions

View File

@@ -3,5 +3,8 @@ load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "exec",
crate_name = "codex_exec",
test_shard_counts = {
"exec-all-test": 8,
},
test_tags = ["no-sandbox"],
)

View File

@@ -4,4 +4,7 @@ codex_rust_crate(
name = "shell-command",
crate_name = "codex_shell_command",
compile_data = ["src/command_safety/powershell_parser.ps1"],
test_shard_counts = {
"shell-command-unit-tests": 8,
},
)

View File

@@ -4,4 +4,7 @@ codex_rust_crate(
name = "state",
crate_name = "codex_state",
compile_data = glob(["logs_migrations/**", "migrations/**"]),
test_shard_counts = {
"state-unit-tests": 4,
},
)