Skip to content

Commit c0de767

Browse files
committed
TST/MAINT: Test on different OSes and make pytest output verbose
1 parent 2f42baa commit c0de767

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ${{ matrix.os }}
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10"]
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1314

1415
steps:
1516
- uses: actions/checkout@v3
@@ -34,4 +35,4 @@ jobs:
3435
- name: Test with pytest
3536
run: |
3637
pip install pytest
37-
pytest
38+
pytest -v

0 commit comments

Comments
 (0)