Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,11 @@ class TestCodexLaunch:
CODEX_INCOMPATIBLE_MODEL_FRAGMENTS = (
# nano endpoint is unreliably slow and times out past the 60s budget.
"gpt-5-4-nano",
# These endpoints are discoverable as responses-capable, but the
# backing OpenAI endpoint returns ENDPOINT_NOT_FOUND in the CI region.
"gpt-5-6-luna",
"gpt-5-6-sol",
"gpt-5-6-terra",
)

def _codex_models(self, e2e_state: dict) -> list[str]:
Expand Down Expand Up @@ -812,6 +817,8 @@ class TestCopilotLaunch:
# gpt-5.5 rejects function tools + reasoning_effort on /chat/completions
# ("Please use /v1/responses instead").
"gpt-5-5",
# gpt-5.6 models similarly reject /chat/completions with 404.
"gpt-5-6",
)

def _all_models(self, e2e_state: dict) -> list[tuple[str, str]]:
Expand Down
Loading