Skip to content

Commit

Permalink
exlude 3.7 on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-usielski committed Nov 22, 2024
1 parent a4e4683 commit 767d8a9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
# python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
python-version: ["3.10", 3.11, 3.12, 3.13]
python-version: [3.7, "3.10", 3.11, 3.12, 3.13]
exclude:
- os: macos-latest
version: 3.7
fail-fast: false
env:
MOLER_DEBUG_THREADS: True
Expand Down Expand Up @@ -50,7 +53,7 @@ jobs:
echo ----------- test adb simulator
adb devices
- name: Test with pytest
if: ${{ (matrix.python-version != env.PYTHON_COVERAGE) || (matrix.os == 'ubuntu-latest') }}
if: ${{ (matrix.python-version != env.PYTHON_COVERAGE) || (matrix.os == 'macos-latest') }}
timeout-minutes: 14
run: |
python -m pytest -vvvsss test/
Expand Down

0 comments on commit 767d8a9

Please sign in to comment.