fix: resolve GitHub Actions failures
- Remove Codecov coverage upload causing rate limit errors - Remove pytest-cov dependency (not needed for CI) - Simplify test workflow to focus on functionality - All 37 tests still pass without coverage collection - Workflow now more reliable and faster 🔧 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@@ -30,16 +30,10 @@ jobs:
|
||||
run: |
|
||||
# Run all tests except live integration tests
|
||||
# These tests use mocks and don't require API keys
|
||||
python -m pytest tests/ --ignore=tests/test_live_integration.py -v --cov=. --cov-report=xml
|
||||
python -m pytest tests/ --ignore=tests/test_live_integration.py -v
|
||||
env:
|
||||
# Ensure no API key is accidentally used in CI
|
||||
GEMINI_API_KEY: ""
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
file: ./coverage.xml
|
||||
fail_ci_if_error: true
|
||||
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user