Merge branch 'develop' into ci/add_python_3.14

This commit is contained in:
Fabian Joswig 2025-05-06 14:23:47 +02:00 committed by GitHub
commit b4fd38e68f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 356 additions and 244 deletions

View file

@ -20,7 +20,9 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: macos-latest
python-version: "3.10"
python-version: "3.12"
- os: ubuntu-24.04-arm
python-version: "3.12"
steps:
- name: Checkout source
@ -31,17 +33,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: uv
uses: astral-sh/setup-uv@v5
- name: Install
run: |
python -m pip install --upgrade pip
pip install wheel
pip install .
pip install pytest
pip install pytest-cov
pip install pytest-benchmark
pip install hypothesis
pip freeze
uv pip install wheel --system
uv pip install . --system
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system
- name: Run tests
run: pytest --cov=pyerrors -vv
run: pytest --cov=pyerrors -vv -Werror