mirror of
https://github.com/openai/codex.git
synced 2026-09-06 15:29:32 +00:00
codex: fix Windows shard contention (#28598)
This commit is contained in:
@@ -18,7 +18,11 @@ codex_rust_crate(
|
||||
# long. Using a higher shard count for app-server-all-test should help
|
||||
# mitigate this risk.
|
||||
"app-server-all-test": 32,
|
||||
"app-server-all-test-windows-cross": 16,
|
||||
"app-server-unit-tests": 8,
|
||||
},
|
||||
test_sizes = {
|
||||
"app-server-all-test-windows-cross": "medium",
|
||||
},
|
||||
test_tags = ["no-sandbox"],
|
||||
)
|
||||
|
||||
@@ -44,8 +44,13 @@ codex_rust_crate(
|
||||
],
|
||||
test_shard_counts = {
|
||||
"core-all-test": 16,
|
||||
"core-all-test-windows-cross": 32,
|
||||
"core-all-test-windows-cross": 8,
|
||||
"core-unit-tests": 16,
|
||||
"core-unit-tests-windows-cross": 8,
|
||||
},
|
||||
test_sizes = {
|
||||
"core-all-test-windows-cross": "medium",
|
||||
"core-unit-tests-windows-cross": "medium",
|
||||
},
|
||||
test_tags = ["no-sandbox"],
|
||||
)
|
||||
|
||||
@@ -5,6 +5,10 @@ codex_rust_crate(
|
||||
crate_name = "codex_exec",
|
||||
test_shard_counts = {
|
||||
"exec-all-test": 16,
|
||||
"exec-all-test-windows-cross": 2,
|
||||
},
|
||||
test_sizes = {
|
||||
"exec-all-test-windows-cross": "medium",
|
||||
},
|
||||
test_tags = ["no-sandbox"],
|
||||
)
|
||||
|
||||
@@ -5,5 +5,9 @@ codex_rust_crate(
|
||||
crate_name = "codex_utils_image",
|
||||
test_shard_counts = {
|
||||
"image-unit-tests": 4,
|
||||
"image-unit-tests-windows-cross": 1,
|
||||
},
|
||||
test_sizes = {
|
||||
"image-unit-tests-windows-cross": "medium",
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user