diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14c39a5e..cbaa22c8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: |