mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
Preserve the subagent runtime behavior on top of the refreshed inbox foundation branch and collapse the branch back to a single commit for easier future restacks.
36 lines
1.5 KiB
TOML
36 lines
1.5 KiB
TOML
[profile.default]
|
|
# Do not increase, fix your test instead
|
|
slow-timeout = { period = "15s", terminate-after = 2 }
|
|
|
|
[test-groups.app_server_protocol_codegen]
|
|
max-threads = 1
|
|
|
|
[test-groups.app_server_integration]
|
|
max-threads = 1
|
|
|
|
|
|
[[profile.default.overrides]]
|
|
# Do not add new tests here
|
|
filter = 'test(rmcp_client) | test(humanlike_typing_1000_chars_appears_live_no_placeholder)'
|
|
slow-timeout = { period = "1m", terminate-after = 4 }
|
|
|
|
[[profile.default.overrides]]
|
|
filter = 'test(approval_matrix_covers_all_modes)'
|
|
slow-timeout = { period = "30s", terminate-after = 2 }
|
|
|
|
[[profile.default.overrides]]
|
|
filter = 'package(codex-app-server-protocol) & (test(typescript_schema_fixtures_match_generated) | test(json_schema_fixtures_match_generated) | test(generate_ts_with_experimental_api_retains_experimental_entries) | test(generated_ts_optional_nullable_fields_only_in_params) | test(generate_json_filters_experimental_fields_and_methods))'
|
|
test-group = 'app_server_protocol_codegen'
|
|
|
|
[[profile.default.overrides]]
|
|
# These integration tests spawn a fresh app-server subprocess per case.
|
|
# Keep the library unit tests parallel.
|
|
filter = 'package(codex-app-server) & kind(test)'
|
|
test-group = 'app_server_integration'
|
|
|
|
[[profile.default.overrides]]
|
|
# Schema fixture generation can take longer than the default timeout on slower
|
|
# Windows runners when app-server protocol fixture sets grow.
|
|
filter = 'test(schema_fixtures_match_generated)'
|
|
slow-timeout = { period = "1m", terminate-after = 2 }
|