Skip to content

Commit 7d0a760

Browse files
committed
[ci] Run tests with Werror for all python versions but for 3.14
1 parent e48e276 commit 7d0a760

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/pytest.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,10 @@ jobs:
4242
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
4343
uv pip freeze --system
4444
45-
- name: Run tests
45+
- 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'
4651
run: pytest --cov=pyerrors -vv

0 commit comments

Comments
 (0)