Skip to content
Open
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
4 changes: 2 additions & 2 deletions tests/test_live.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ def cohere(http_client: httpx.AsyncClient, _tmp_path: Path) -> Model:

params = [
pytest.param(openai, id='openai'),
pytest.param(gemini, id='gemini', marks=pytest.mark.skip(reason='API seems very flaky')),
pytest.param(gemini, marks=pytest.mark.skip(reason='API seems very flaky'), id='gemini'),
pytest.param(vertexai, id='vertexai'),
pytest.param(groq, id='groq', marks=pytest.mark.skip(reason='test_structured has started failing')),
pytest.param(groq, id='groq'),
pytest.param(anthropic, id='anthropic'),
pytest.param(ollama, id='ollama'),
pytest.param(mistral, id='mistral'),
Expand Down
Loading