From 5af95157fa4afc611109c346faef13ec19621905 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 26 Aug 2024 06:45:54 -0600 Subject: [PATCH] fix: errors running the test (#904) * fix: errors running the test * Update test.yml --- .github/workflows/test.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c9352cc3..7485ee8d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,17 +22,15 @@ jobs: build: runs-on: ${{ matrix.platform }} strategy: - fail-fast: true + fail-fast: false matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11] + python-version: [3.7, 3.8, 3.9, '3.10', 3.11] exclude: - - platform: ubuntu-latest - python-version: 3.6 - platform: macos-latest python-version: 3.11 - - platform: windows-latest - python-version: 3.6 + - platform: macos-latest + python-version: 3.7 - platform: windows-latest python-version: 3.11