Skip to content

Commit a502178

Browse files
committed
TST/MAINT: Further CI changes
This commit combines several changes to the CI: 1. Removes the `max-parallel` argument 2. Removes verbose output for pytest 3. Add support for PyPy testing
1 parent c0de767 commit a502178

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ jobs:
77

88
runs-on: ${{ matrix.os }}
99
strategy:
10-
max-parallel: 4
1110
matrix:
1211
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", 'pypy2.7', 'pypy3.7', 'pypy3.8', 'pypy3.9']
1413

1514
steps:
1615
- uses: actions/checkout@v3
@@ -35,4 +34,4 @@ jobs:
3534
- name: Test with pytest
3635
run: |
3736
pip install pytest
38-
pytest -v
37+
pytest

0 commit comments

Comments
 (0)