You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Separates Ollama integration tests from main integration test suite:
**New Job: ollama-test**
- Dedicated job for Ollama-specific tests
- Sets up Ollama binary and model cache
- Runs only tests/ipcMain/ollama.test.ts
- Uploads coverage with 'ollama-tests' flag
**Updated Job: integration-test**
- Removed Ollama setup steps
- Excludes ollama.test.ts via --testPathIgnorePatterns
- Removed OLLAMA_BASE_URL env var
- Faster execution without Ollama dependencies
Benefits:
- Better parallelism (Ollama tests run independently)
- Clearer separation of concerns
- Main integration tests complete faster
- Ollama-specific caching isolated to one job
_Generated with `cmux`_
# Exclude Ollama tests (run separately in ollama-test job)
108
+
run: TEST_INTEGRATION=1 bun x jest --coverage --maxWorkers=100% --silent --testPathIgnorePatterns=ollama.test.ts ${{ github.event.inputs.test_filter || 'tests' }}
0 commit comments