From a023c07fb50e25e9052907b2e129bb1be0f6f34f Mon Sep 17 00:00:00 2001 From: onerandomusername Date: Fri, 19 Nov 2021 04:02:47 -0500 Subject: [PATCH] debug: make macos 3.10 optional for real this time --- .github/workflows/lint_test.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint_test.yml b/.github/workflows/lint_test.yml index 2347ec7b..eb6844ae 100644 --- a/.github/workflows/lint_test.yml +++ b/.github/workflows/lint_test.yml @@ -113,18 +113,21 @@ jobs: test: runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} + continue-on-error: ${{ matrix.optional }} strategy: fail-fast: false matrix: python_version: ['3.8', '3.9','3.10'] os: [ubuntu-latest, windows-latest, macos-latest] - experimental: [false] + optional: [false] + exclude: + # currently has a segfault issue, so we exclude and reinclude as optional + - python_version: '3.10' + os: macos-latest include: - # currently has a segfault issue, - - os: macos-latest - python_version: '3.10' - experimental: true + - python_version: '3.10' + os: macos-latest + optional: true env: PYTHON_VERSION: ${{ matrix.python_version }} steps: