Skip to content

Commit e99cf04

Browse files
davidbrochartianthomas23
authored andcommitted
Test more python versions (ipython#1358)
1 parent 7603443 commit e99cf04

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,13 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macos-latest]
25-
python-version: ["3.9", "3.13"]
26-
include:
27-
- os: ubuntu-latest
28-
python-version: "pypy-3.9"
29-
- os: macos-latest
30-
python-version: "3.10"
31-
- os: ubuntu-latest
32-
python-version: "3.11"
33-
- os: ubuntu-latest
34-
python-version: "3.12"
25+
python-version:
26+
- "3.9"
27+
- "3.10"
28+
- "3.11"
29+
- "3.12"
30+
- "3.13"
31+
- "pypy-3.10"
3532
steps:
3633
- name: Checkout
3734
uses: actions/checkout@v4
@@ -59,7 +56,7 @@ jobs:
5956
6057
- name: Run the tests on Windows
6158
timeout-minutes: 15
62-
if: ${{ startsWith(matrix.os, 'windows') }}
59+
if: ${{ !startsWith( matrix.python-version, 'pypy' ) && startsWith(matrix.os, 'windows') }}
6360
run: |
6461
hatch run cov:nowarn || hatch run test:nowarn --lf
6562

0 commit comments

Comments
 (0)