Skip to content

Refactor pytest tests to use functional patterns + hypothesis #69

Refactor pytest tests to use functional patterns + hypothesis

Refactor pytest tests to use functional patterns + hypothesis #69

Workflow file for this run

name: Python tests
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Run nox
run: uv run --only-group nox nox -p 3.13