diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d31292..015ee7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/requirements.txt b/requirements.txt index e7f494d..d734008 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,4 @@ pydantic>=2.0.0 # Development dependencies pytest>=7.4.0 pytest-asyncio>=0.21.0 -pytest-cov>=4.1.0 pytest-mock>=3.11.0 \ No newline at end of file diff --git a/setup.py b/setup.py index a13cf42..cc32569 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,6 @@ setup( "dev": [ "pytest>=7.4.0", "pytest-asyncio>=0.21.0", - "pytest-cov>=4.1.0", "pytest-mock>=3.11.0", ] },