Skip to content

chore: bump pytest-cov from 6.3.0 to 7.1.0 #1423

chore: bump pytest-cov from 6.3.0 to 7.1.0

chore: bump pytest-cov from 6.3.0 to 7.1.0 #1423

Workflow file for this run

# This workflow will install Python dependencies, and run the tests for our project
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
version: "0.8.22"
- name: Install the dependencies
run: uv sync --locked --group dev --all-extras --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests
test-weekly-download:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
version: "0.8.22"
- name: Install the dependencies
run: uv sync --locked --group download --group dev --python 3.14
- name: Run tests
run: uv run pytest dependencies/tests