Skip to content

Commit

Permalink
ci: Add missing macOS CI envs (pytest-dev#9601)
Browse files Browse the repository at this point in the history
alinsa_vix in Discord noticed that we are not testing Python 3.9 and 3.10 on macOS, which seems strange. Maybe this is due how to macOS CI resources were quite scarce for a while, but I believe this has improved since.
  • Loading branch information
The-Compiler authored Feb 4, 2022
1 parent dfa7023 commit dff1a15
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:

"macos-py37",
"macos-py38",
"macos-py39",
"macos-py310",

"docs",
"doctesting",
Expand Down Expand Up @@ -116,6 +118,14 @@ jobs:
os: macos-latest
tox_env: "py38-xdist"
use_coverage: true
- name: "macos-py39"
python: "3.9"
os: macos-latest
tox_env: "py39-xdist"
- name: "macos-py310"
python: "3.10"
os: macos-latest
tox_env: "py310-xdist"

- name: "plugins"
python: "3.9"
Expand Down

0 comments on commit dff1a15

Please sign in to comment.