From f6e7b54c9ade3bb511b72e78c911272fc1c2f836 Mon Sep 17 00:00:00 2001 From: Manu Date: Wed, 9 Sep 2020 08:34:50 +0800 Subject: [PATCH] Reduce tests on macOS and increase limit. Fixes #632 --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2fc42501..86c00ce0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: test: - timeout-minutes: 10 + timeout-minutes: 15 runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -12,6 +12,12 @@ jobs: matrix: python-version: [3.6, 3.7, 3.8] os: [ubuntu-latest, macos-latest] + exclude: + # Only test Python 3.7 on macOS + - os: macos-latest + python-version: 3.6 + - os: macos-latest + python-version: 3.8 steps: - uses: actions/checkout@v2