Skip to content

Commit 5f11cb6

Browse files
committed
Ignore msgpack warning about running without the GIL
1 parent 891e4e4 commit 5f11cb6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ jobs:
6565
run: |
6666
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W default" >> $GITHUB_ENV
6767
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+
6873
- name: disable coverage on pypy
6974
if: ${{ startsWith(matrix.python-version, 'pypy') }}
7075
run: |

0 commit comments

Comments
 (0)