We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 891e4e4 commit 5f11cb6Copy full SHA for 5f11cb6
.github/workflows/main.yml
@@ -65,6 +65,11 @@ jobs:
65
run: |
66
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W default" >> $GITHUB_ENV
67
68
+ - name: ignore RuntimeWarning on 3.14t
69
+ if: ${{ matrix.python-version == '3.14t' }}
70
+ run: |
71
+ echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W ignore::RuntimeWarning" >> "$GITHUB_ENV"
72
+
73
- name: disable coverage on pypy
74
if: ${{ startsWith(matrix.python-version, 'pypy') }}
75
0 commit comments