Skip to content

Commit 016f7e5

Browse files
committed
tests: flip order
1 parent f256882 commit 016f7e5

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -128,22 +128,17 @@ jobs:
128128
run:
129129
uv pip install
130130
-e.[test,test-meta,test-numpy,test-schema,test-hatchling,wheels,cov,wheel-free-setuptools]
131-
--system --only-binary=numpy
132-
--extra-index-url=https://www.graalvm.org/python/wheels/simple
133-
--index-strategy=unsafe-best-match
131+
--system
132+
# --only-binary=numpy
133+
# --extra-index-url=https://www.graalvm.org/python/wheels/simple
134+
# --index-strategy=unsafe-best-match
134135

135136
- name: Install package (pip)
136137
if: matrix.python-version == 'pypy-3.8'
137138
run:
138139
pip install
139140
-e.[test,test-meta,test-numpy,test-schema,wheels,cov,wheel-free-setuptools]
140141

141-
- name: Test package
142-
if: "!contains(matrix.python_version, 'py')"
143-
run: >-
144-
pytest -ra --showlocals --cov --cov-report=xml --cov-report=term -n
145-
auto --durations=20
146-
147142
- name: Test package (two attempts)
148143
uses: nick-fields/retry@v3
149144
if: "contains(matrix.python_version, 'pypy')"
@@ -161,6 +156,12 @@ jobs:
161156
pytest -ra --showlocals --cov --cov-report=xml --cov-report=term
162157
--durations=20
163158
159+
- name: Test package
160+
if: "!contains(matrix.python_version, 'py')"
161+
run: >-
162+
pytest -ra --showlocals --cov --cov-report=xml --cov-report=term -n
163+
auto --durations=20
164+
164165
- name: Upload coverage report
165166
uses: codecov/codecov-action@v5
166167
with:

0 commit comments

Comments
 (0)