From a7aa2e8cb72131534102d82f0829ee2d9a9b9893 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 29 Jun 2026 10:02:41 +0200 Subject: [PATCH] [Fix] Re-impose --Werror for python 3.14 runs after new autograd release --- .github/workflows/pytest.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 63efd763..5b529458 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -42,10 +42,5 @@ jobs: uv pip install pytest pytest-cov pytest-benchmark hypothesis --system uv pip freeze --system - - name: Run tests with -Werror - if: matrix.python-version != '3.14' + - name: Run tests 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