Skip to content

Commit 7af8adc

Browse files
committed
ci: longer timeout, restore parallel for graalpy
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 6ac85d1 commit 7af8adc

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
🐍 ${{ matrix.python-version }} • CMake ${{ matrix.cmake-version }} on ${{
4949
matrix.runs-on }}
5050
runs-on: ${{ matrix.runs-on }}
51-
timeout-minutes: 40
51+
timeout-minutes: 70
5252
strategy:
5353
fail-fast: false
5454
matrix:
@@ -90,7 +90,6 @@ jobs:
9090
- python-version: "3.12"
9191
runs-on: windows-latest
9292
cmake-version: "3.26.x"
93-
# TODO: CMake doesn't work with beta 1 on Windows
9493
- python-version: "3.14"
9594
runs-on: windows-latest
9695
cmake-version: "4.0.x"
@@ -109,6 +108,11 @@ jobs:
109108
- python-version: "graalpy-24.2"
110109
runs-on: ubuntu-latest
111110
cmake-version: "4.0"
111+
exclude:
112+
# No NumPy PyPy for ARM
113+
- python-version: "pypy-3.10"
114+
runs-on: macos-14
115+
cmake-version: "3.15.x"
112116

113117
steps:
114118
- uses: actions/checkout@v4
@@ -138,12 +142,12 @@ jobs:
138142
pip install
139143
-e.[test,test-meta,test-numpy,test-schema,wheels,cov,wheel-free-setuptools]
140144

141-
- name: Test package (serial)
142-
if: "contains(matrix.python-version, 'graalpy')"
143-
run: pytest -ra --showlocals --durations=20
145+
#- name: Test package (serial)
146+
# if: "contains(matrix.python-version, 'graalpy')"
147+
# run: pytest -ra --showlocals --durations=20
144148

145149
- name: Test package
146-
if: "!contains(matrix.python-version, 'graalpy')"
150+
# if: "!contains(matrix.python-version, 'graalpy')"
147151
run: >-
148152
pytest -ra --showlocals --cov --cov-report=xml --cov-report=term -n
149153
auto --durations=20

0 commit comments

Comments
 (0)