Skip to content

Update pytest requirement from ~=7.1 to ~=9.0 #284

Update pytest requirement from ~=7.1 to ~=9.0

Update pytest requirement from ~=7.1 to ~=9.0 #284

Workflow file for this run

name: Python tests
on: [ push, pull_request ]
jobs:
run-tests:
name: "Run tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v5
- name: Install uv and set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --locked
- name: Test with pytest
run: uv run pytest