From 260f1831b5aa176c5e5074bf66c3e5ec3f585d2f Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sun, 8 May 2022 10:48:52 -0700 Subject: [PATCH] chore: allow Python 3.11 tests to fail This is due to https://github.com/python-gitlab/python-gitlab/issues/2015 --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5b597bf1a..1b690a54b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,23 +27,30 @@ jobs: python: - version: "3.7" toxenv: py37 + experimental: false - version: "3.8" toxenv: py38 + experimental: false - version: "3.9" toxenv: py39 + experimental: false - version: "3.10" toxenv: py310,smoke + experimental: false - version: '3.11.0-alpha - 3.11' # SemVer's version range syntax toxenv: py311,smoke + experimental: true include: - os: macos-latest python: version: "3.10" toxenv: py310,smoke + experimental: false - os: windows-latest python: version: "3.10" toxenv: py310,smoke + experimental: false steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python.version }} @@ -53,6 +60,7 @@ jobs: - name: Install dependencies run: pip3 install tox pytest-github-actions-annotate-failures - name: Run tests + continue-on-error: ${{ matrix.python.experimental }} env: TOXENV: ${{ matrix.python.toxenv }} run: tox --skip-missing-interpreters false