From e8abce0794834a4504dc137bf0ac16bade7cd9ee Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 14 Apr 2021 11:06:01 +0200 Subject: [PATCH] ci: Mark Python 3.10 as experimental It currently breaks all builds and even after #8540 it looks like tests still fail because of https://github.com/benjaminp/six/issues/341 As a hotfix, mark it as experimental until everything is fixed, so that our CI isn't all red. --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 98e32512f7a..5c55f928ee4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,7 @@ jobs: build: runs-on: ${{ matrix.os }} timeout-minutes: 30 + continue-on-error: "${{ matrix.experimental == true }}" strategy: fail-fast: false @@ -73,6 +74,7 @@ jobs: python: "3.10-dev" os: windows-latest tox_env: "py310-xdist" + experimental: true - name: "ubuntu-py36" python: "3.6" @@ -103,6 +105,7 @@ jobs: python: "3.10-dev" os: ubuntu-latest tox_env: "py310-xdist" + experimental: true - name: "ubuntu-pypy3" python: "pypy-3.7" os: ubuntu-latest