Skip to content

Commit

Permalink
Issue (#1) try python 3.12 and add some debug info got tcl
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Mar 5, 2024
1 parent 50c0ace commit 3d8dfb7
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
- python-ver: 3.11
os: windows-latest
experimental: true
- python-ver: 3.12
os: ubuntu-latest
experimental: true
- python-ver: 3.12
os: macos-latest
experimental: true
- python-ver: 3.12
os: windows-latest
experimental: true


runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
Expand All @@ -54,10 +64,17 @@ jobs:
coverage run -a --source ./imshowtk -m pytest -v -s ./tests/
coverage report -m
- name: Run tests on windows/mac
# Matches the 'o' in 'windows' or 'macos'
if: contains(matrix.os, 'o')
- name: Run tests on windows
if: contains(matrix.os, 'windows')
run: |
coverage erase
coverage run -a --source ./imshowtk -m pytest -v -s ./tests/
coverage report -m
- name: Run tests mac
if: contains(matrix.os, 'macos')
run: |
brew info tcl-tk
coverage erase
coverage run -a --source ./imshowtk -m pytest -v -s ./tests/
coverage report -m
Expand Down

0 comments on commit 3d8dfb7

Please sign in to comment.