From f839730d22c4b465f801b26b6ebcd9686d1afafb Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Wed, 19 Jun 2024 12:42:36 +0200 Subject: [PATCH] Merge pull request #12488 from webknjaz/maintenance/gha-check-allowed-failures MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🧪 Make required CI jobs match branch protection (cherry picked from commit 57bc6df510899ba77de5129d975f148c4a868725) --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2cd84ac50..aa782ae33 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -182,6 +182,26 @@ jobs: tox_env: "doctesting" use_coverage: true + continue-on-error: >- + ${{ + contains( + fromJSON( + '[ + "windows-py38-pluggy", + "windows-py313", + "ubuntu-py38-pluggy", + "ubuntu-py38-freeze", + "ubuntu-py313", + "macos-py38", + "macos-py313" + ]' + ), + matrix.name + ) + && true + || false + }} + steps: - uses: actions/checkout@v4 with: