Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 716cca7

Browse files
committed
Remove Ollama from Integration Tests
1 parent 6116285 commit 716cca7

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false # Continue running other tests if one fails
2727
matrix:
2828
python-version: [ "3.12" ]
29-
test-provider: [ "copilot", "openai", "anthropic", "ollama", "vllm", "llamacpp", "openrouter" ]
29+
test-provider: [ "copilot", "openai", "anthropic", "vllm", "llamacpp", "openrouter" ]
3030
env:
3131
ENV_COPILOT_KEY: ${{ secrets.copilot-key }}
3232
ENV_OPENAI_KEY: ${{ secrets.copilot-key }} # We use the same key for OpenAI as the Copilot tests

tests/integration/integration_tests.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,13 @@ async def main():
376376
logger.error(f"Invalid providers specified: {', '.join(invalid_providers)}")
377377
logger.error(f"Available providers: {', '.join(available_providers)}")
378378
sys.exit(1)
379-
else:
380-
selected_providers = available_providers
379+
else:
380+
selected_providers = available_providers
381+
382+
# Exclude ollama provider if it's in the list
383+
if "ollama" in selected_providers:
384+
selected_providers.remove("ollama")
385+
logger.info("Excluded 'ollama' provider from tests.")
381386

382387
# Get test names if specified
383388
test_names = None

0 commit comments

Comments
 (0)