Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ jobs:
run: |
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W default" >> $GITHUB_ENV

- name: ignore RuntimeWarning on 3.14t
if: ${{ matrix.python-version == '3.14t' }}
run: |
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -W ignore::RuntimeWarning" >> "$GITHUB_ENV"

- name: skip known failing tests on 3.14t
if: ${{ matrix.python-version == '3.14t' }}
run: |
echo "PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-} -k 'not ((TestParallel and test_start_parallel_thread_kernels) or (TestAsyncKernelClient and test_inspect))'" >> "$GITHUB_ENV"

- name: disable coverage on pypy
if: ${{ startsWith(matrix.python-version, 'pypy') }}
run: |
Expand Down
Loading