[ci] Run tests with Werror for all python versions but for 3.14

This commit is contained in:
Fabian Joswig 2025-10-19 12:37:07 +02:00
commit 7d0a760c1e

View file

@ -42,5 +42,10 @@ jobs:
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system
- name: Run tests
- name: Run tests with -Werror
if: matrix.python-version != '3.14'
run: pytest --cov=pyerrors -vv -Werror
- name: Run tests without -Werror for python 3.14
if: matrix.python-version == '3.14'
run: pytest --cov=pyerrors -vv