Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/test.yml → .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install ".[test]"

- name: Test
run: |
python -m pytest
- name: Run pytest with coverage
run: python -m pytest --cov=lazy_loader --durations=10

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests,${{ runner.os }},py${{ matrix.python-version }}
39 changes: 0 additions & 39 deletions .github/workflows/coverage.yml

This file was deleted.