Skip to content

Commit

Permalink
Only test on Python 3.9 on macos (dask#9029)
Browse files Browse the repository at this point in the history
The macos builds consistently take the longest to run, and have a lower
org-level concurrency limit than windows or linux. In `dask/dask` we
have no logic specific to macos, so testing on every python version on
this platform doesn't seem necessary. To reduce CI delay, we change
github actions to only test macos on python 3.9.
  • Loading branch information
jcrist authored May 5, 2022
1 parent b946406 commit 19f00be
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10"]
exclude:
- os: "macos-latest"
python-version: "3.8"
- os: "macos-latest"
python-version: "3.10"

env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down

0 comments on commit 19f00be

Please sign in to comment.