[Fix] Re-impose --Werror for python 3.14 runs after new autograd release

This commit is contained in:
Fabian Joswig 2026-06-29 10:02:41 +02:00
commit a7aa2e8cb7

View file

@ -42,10 +42,5 @@ jobs:
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system uv pip freeze --system
- name: Run tests with -Werror - name: Run tests
if: matrix.python-version != '3.14'
run: pytest --cov=pyerrors -vv -Werror 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