We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e48e276 commit 7d0a760Copy full SHA for 7d0a760
.github/workflows/pytest.yml
@@ -42,5 +42,10 @@ jobs:
42
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
43
uv pip freeze --system
44
45
- - name: Run tests
+ - name: Run tests with -Werror
46
+ if: matrix.python-version != '3.14'
47
+ run: pytest --cov=pyerrors -vv -Werror
48
+
49
+ - name: Run tests without -Werror for python 3.14
50
+ if: matrix.python-version == '3.14'
51
run: pytest --cov=pyerrors -vv
0 commit comments