We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f587341 commit a9459f7Copy full SHA for a9459f7
1 file changed
codex-rs/app-server/tests/suite/v2/account.rs
@@ -46,7 +46,9 @@ use wiremock::ResponseTemplate;
46
use wiremock::matchers::method;
47
use wiremock::matchers::path;
48
49
-const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(10);
+// Account tests spin up fresh app-server processes repeatedly, which can take
50
+// longer on slower Bazel macOS runners once the suite is already warm.
51
+const DEFAULT_READ_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(20);
52
const LOGIN_ISSUER_ENV_VAR: &str = "CODEX_APP_SERVER_LOGIN_ISSUER";
53
54
// Helper to create a minimal config.toml for the app server
0 commit comments