Skip to content

Commit

Permalink
Use pre-ARM Mac images to test oldest dependencies
Browse files Browse the repository at this point in the history
The older dependencies don't have ARM builds and so the tests fail on
oldest dependencies with the latest Mac images.
  • Loading branch information
leouieda committed Sep 3, 2024
1 parent 6c39e3f commit fa400ef
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ jobs:
# run all of them to catch failures in different combinations.
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
os: [ubuntu-latest, windows-latest]
python: ["3.9", "3.12"]
include:
- python: "3.9"
dependencies: oldest
- python: "3.12"
dependencies: latest
# Have to use older mac because older dependencies don't have ARM builds
- os: macos-13
dependencies: oldest
python: "3.9"
- os: macos-latest
dependencies: latest
python: "3.12"
env:
REQUIREMENTS: env/requirements-build.txt env/requirements-test.txt
# Used to tag codecov submissions
Expand Down

0 comments on commit fa400ef

Please sign in to comment.