Skip to content

Commit 09d33ee

Browse files
authored
Skip gemini flash-lite-image model in opencode per-model e2e test (#229)
`databricks-gemini-3-1-flash-lite-image` is an image-generation model that rejects function calling with a 400, so opencode can never launch it. Add it to SKIP_MODELS. Co-authored-by: Isaac
1 parent a4ec6ec commit 09d33ee

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_e2e.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,9 @@ class TestOpencodeLaunch:
711711
# no stderr beyond the initial `> build · <model>` line, while every
712712
# other configured model returns in ~3s. Backend-side latency we can't
713713
# influence from this repo; skip rather than block CI.
714-
SKIP_MODELS: frozenset[str] = frozenset({"databricks-gemini-3-1-flash-lite"})
714+
SKIP_MODELS: frozenset[str] = frozenset(
715+
{"databricks-gemini-3-1-flash-lite", "databricks-gemini-3-1-flash-lite-image"}
716+
)
715717

716718
def _all_models(self, e2e_state: dict) -> list[tuple[str, str]]:
717719
"""Return [(provider, model_id), ...] for all opencode models."""

0 commit comments

Comments
 (0)