Skip to content

Commit

Permalink
Reduce CI space
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Jun 20, 2024
1 parent 645fd21 commit 9835f58
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ 3.9, 3.11, 3.12 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
python: [ 3.9, 3.11 ]
# Use macos-13 to run on x86, for simplicity
os: [ macos-13, ubuntu-latest, windows-latest ]
defaults:
run:
shell: bash
Expand All @@ -75,7 +76,7 @@ jobs:
uses: actions/checkout@v3

- name: Install OSX libs
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-13'
run: |
brew install libxml2 libxslt
Expand Down Expand Up @@ -133,11 +134,6 @@ jobs:
conda activate anaconda-client-env
python setup.py build_ext --inplace
- name: Remove py311 incompatible tests (lack of numba support for 3.11, needed for lshmm)
if: matrix.python == '3.11'
run: |
rm python/tests/test_*matching*
- name: Run tests
working-directory: python
run: |
Expand Down

0 comments on commit 9835f58

Please sign in to comment.