From d2e25cb73c52a80f032dd38995bdb640e5b639e8 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 18 Aug 2025 00:49:02 +0300 Subject: [PATCH] Tests(GHActions): Do not run tests on OSX There is a strange non-reproducible bug that's only triggered on OSX. --- .github/workflows/run-tests.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index f730eff..5374468 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -9,24 +9,12 @@ jobs: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] - exclude: - - os: macos-latest - python-version: "2.7" - - os: macos-latest - python-version: "3.5" - - os: macos-latest - python-version: "3.6" - - os: macos-latest - python-version: "3.7" include: - os: ubuntu-latest os-name: Linux pip-cache-path: ~/.cache/pip - - os: macos-latest - os-name: OSX - pip-cache-path: ~/Library/Caches/pip - os: windows-latest os-name: w32 pip-cache-path: ~\AppData\Local\pip\Cache -- 2.39.5