Skip to content

Commit

Permalink
CI: disable Win/OSX builds; more python versions to test with; pin se…
Browse files Browse the repository at this point in the history
…tuptools to an older version; more verbose test output
  • Loading branch information
mrakitin committed Feb 14, 2024
1 parent ca99a7e commit d2d25e2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: [ubuntu-latest]

# include:
# - python-version: pypy-3.10
Expand All @@ -56,12 +57,15 @@ jobs:
allow-prereleases: true

- name: Install package
run: python -m pip install .[test]
run: |
set -vxeuo pipefail
python -m pip install .[test]
python -m pip install setuptools==66.1.1
- name: Test package
run: >-
python -m pytest -ra --cov --cov-report=xml --cov-report=term
--durations=20 -m "(not hardware) and (not tiled)"
--durations=20 -m "(not hardware) and (not tiled)" -s -vv
- name: Upload coverage report
uses: codecov/[email protected]

0 comments on commit d2d25e2

Please sign in to comment.