Skip to content

Commit 5329ebf

Browse files
authored
tests: Enable portkey integration tests. (#523)
1 parent bad5adf commit 5329ebf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests-integration.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Set expected providers for integration tests
2525
id: set_providers
26-
run: echo "expected_providers=anthropic,bedrock,cerebras,cohere,databricks,deepseek,fireworks,gemini,groq,huggingface,inception,llama,mistral,moonshot,nebius,openai,openrouter,perplexity,together,sambanova,voyage,watsonx,xai" >> $GITHUB_OUTPUT
26+
run: echo "expected_providers=anthropic,bedrock,cerebras,cohere,databricks,deepseek,fireworks,gemini,groq,huggingface,inception,llama,mistral,moonshot,nebius,openai,openrouter,perplexity,portkey,together,sambanova,voyage,watsonx,xai" >> $GITHUB_OUTPUT
2727

2828
- name: Set expected providers for local integration tests
2929
id: set_local_providers
@@ -73,6 +73,7 @@ jobs:
7373
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
7474
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
7575
PERPLEXITY_API_KEY: ${{ secrets.PERPLEXITY_API_KEY }}
76+
PORTKEY_API_KEY: ${{ secrets.PORTKEY_API_KEY }}
7677
SAMBANOVA_API_KEY: ${{ secrets.SAMBANOVA_API_KEY }}
7778
TOGETHER_API_KEY: ${{ secrets.TOGETHER_API_KEY }}
7879
VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }}

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def provider_model_map() -> dict[LLMProvider, str]:
5555
LLMProvider.WATSONX: "ibm/granite-3-8b-instruct",
5656
LLMProvider.FIREWORKS: "accounts/fireworks/models/llama4-scout-instruct-basic",
5757
LLMProvider.GROQ: "openai/gpt-oss-20b",
58-
LLMProvider.PORTKEY: "@first-integrati-d8a10f/gpt-4.1-mini", # Owned by njbrake in portkey UI
58+
LLMProvider.PORTKEY: "@any-llm-test/gpt-4.1-nano",
5959
LLMProvider.LLAMA: "Llama-4-Maverick-17B-128E-Instruct-FP8",
6060
LLMProvider.AZURE: "openai/gpt-4.1-nano",
6161
LLMProvider.AZUREOPENAI: "azure/<your_deployment_name>",

0 commit comments

Comments
 (0)