Skip to content

fixed pytest failure for python 3.9 #18

fixed pytest failure for python 3.9

fixed pytest failure for python 3.9 #18

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev --python ${{ matrix.python-version }} || uv pip install -e ".[dev]" --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest tests/ -v --timeout=300