From 6313b09e30af3db0e283202a12af2c4c4417c57a Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Sat, 14 Feb 2026 03:24:21 +0000 Subject: [PATCH] switch opencode tests to codex, gemini tests to flash-preview Co-authored-by: Cursor --- test/run.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/run.ts b/test/run.ts index 20fe3eb..5fcd89c 100644 --- a/test/run.ts +++ b/test/run.ts @@ -311,14 +311,14 @@ async function runTestForAgent(ctx: RunContext): Promise { env.PULLFROG_TEST_REPO_SETUP = testConfig.repoSetup; } - // opencode: override to google/gemini-3-pro-preview to avoid flash's tight RPD quota limits + // opencode: use codex (OpenAI) to avoid google quota issues and gemini doom-looping if (ctx.agent === "opencode") { - env.OPENCODE_MODEL ??= "google/gemini-2.5-pro"; + env.OPENCODE_MODEL ??= "openai/codex-mini-latest"; } - // gemini: override to 2.5-flash for all tests (including mini-effort) to avoid quota limits + // gemini: use flash for all tests (including mini-effort) to avoid pro quota limits if (ctx.agent === "gemini") { - env.GEMINI_MODEL ??= "gemini-2.5-pro"; + env.GEMINI_MODEL ??= "gemini-3-flash-preview"; } // build file-based env vars for MCP servers that don't inherit parent env