From 252c6e8a17b06c72329f3ba58d0c9f458607d1f7 Mon Sep 17 00:00:00 2001 From: Mathieu Scheltienne Date: Wed, 2 Oct 2024 13:34:12 +0200 Subject: [PATCH] fix macos pytest --- .github/workflows/pytest.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 5491c6f..cea8e96 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -12,12 +12,17 @@ on: # yamllint disable-line rule:truthy jobs: pytest: - timeout-minutes: 30 + timeout-minutes: 10 strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-13, windows-latest] + os: [ubuntu-latest, windows-latest] python-version: ["3.10", "3.11", "3.12"] + include: + - os: macos-13 + python-version: "3.11" + - os: macos-13 + python-version: "3.12" name: ${{ matrix.os }} - py${{ matrix.python-version }} runs-on: ${{ matrix.os }} defaults: