Update dependency pytest-cov to ~=6.0.0 #416
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
paths-ignore: | |
- .gitignore | |
- LICENSE | |
- README.md | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: pre-commit/[email protected] | |
test-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "0.5.1" | |
enable-cache: true | |
- name: Install Python | |
run: uv python install 3.12 | |
- name: Install dependencies | |
run: uv sync --all-extras --frozen | |
- name: Run checks | |
run: uv run make check | |
- name: Run tests and create coverage report | |
run: uv run make test-coverage | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
deps: | |
- starlette | |
- fastapi starlette | |
- fastapi==0.109.0 starlette | |
- fastapi==0.100.1 starlette | |
- fastapi==0.88.0 starlette | |
- flask | |
- flask==2.3.* | |
- flask==2.0.3 Werkzeug==2.* | |
- djangorestframework django uritemplate inflection | |
- djangorestframework django==4.2.* uritemplate inflection | |
- djangorestframework==3.12.* django==3.2.* uritemplate | |
- djangorestframework==3.10.* django==2.2.* uritemplate | |
- django-ninja django | |
- django-ninja==0.22.* django | |
- django-ninja==0.18.0 django | |
- litestar | |
- litestar==2.6.1 | |
- litestar==2.3.0 | |
- litestar==2.0.1 | |
exclude: | |
- python: "3.12" | |
deps: fastapi==0.100.1 starlette | |
- python: "3.12" | |
deps: fastapi==0.87.0 starlette | |
- python: "3.12" | |
deps: djangorestframework==3.12.* django==3.2.* uritemplate | |
- python: "3.12" | |
deps: djangorestframework==3.10.* django==2.2.* uritemplate | |
- python: "3.12" | |
deps: litestar==2.0.1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "0.5.1" | |
enable-cache: true | |
- name: Install Python | |
run: uv python install ${{ matrix.python }} | |
- name: Build Python package wheel | |
run: uv build --wheel | |
- name: Install test dependencies | |
run: uv sync --no-install-project --only-group test --frozen | |
- name: Install app dependencies | |
run: uv pip install ${{ matrix.deps }} ./dist/apitally-*.whl | |
- name: Run tests | |
run: uv run make test |