Skip to content

Commit

Permalink
iterate
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jun 27, 2024
1 parent d49ffcd commit 9cda098
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,18 @@ jobs:
matrix:
version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
exclude:
- os: ubuntu-latest
version: 3.6
- os: macos-13
version: 3.11
- os: macos-13
version: 3.12
# exclude:
# - os: ubuntu-latest
# version: 3.6
include:
- os: ubuntu-20.04
version: 3.6
- os: macos-latest
version: 3.11
- os: macos-latest
version: 3.12
- os: ubuntu-latest
version: graalpy-23.1
- os: macos-latest
version: 3.12
- os: macos-13
version: 3.11
- os: macos-13
version: 3.12
- os: ubuntu-latest
Expand All @@ -69,9 +63,9 @@ jobs:
c/requirements.txt
- name: Run tests (serially)
if: (matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy')
if: ${{(matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy')}}
run: make pytest

- name: Run tests (in parallel)
if: !((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy'))
if: ${{!((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy'))}}
run: make pytest_auto

0 comments on commit 9cda098

Please sign in to comment.