Skip to content

Commit b002ff6

Browse files
committed
Revert "Reapply "Revert debug changes under .github/workflows""
This reverts commit 8f69f83.
1 parent 12b3f84 commit b002ff6

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

.github/workflows/build-and-test.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,9 @@ jobs:
2121
matrix:
2222
host-platform:
2323
- linux-64
24-
- linux-aarch64
2524
- win-64
2625
python-version:
27-
- "3.13"
2826
- "3.12"
29-
- "3.11"
30-
- "3.10"
31-
- "3.9"
3227
cuda-version:
3328
# Note: this is for build-time only.
3429
- "12.8.0"
@@ -211,13 +206,8 @@ jobs:
211206
matrix:
212207
host-platform:
213208
- linux-64
214-
- linux-aarch64
215209
python-version:
216-
- "3.13"
217210
- "3.12"
218-
- "3.11"
219-
- "3.10"
220-
- "3.9"
221211
cuda-version:
222212
# Note: this is for test-time only.
223213
- "12.8.0"

.github/workflows/test-wheel-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
195195
pushd ./cuda_bindings
196196
pip install -r requirements.txt
197-
pytest -rxXs -v tests/
197+
pytest -ra -s -v tests/
198198
199199
# It is a bit convoluted to run the Cython tests against CTK wheels,
200200
# so let's just skip them.
@@ -205,7 +205,7 @@ jobs:
205205
# TODO: enable this once win-64 runners are up
206206
exit 1
207207
fi
208-
pytest -rxXs -v tests/cython
208+
pytest -ra -s -v tests/cython
209209
fi
210210
popd
211211
@@ -229,7 +229,7 @@ jobs:
229229
230230
pushd ./cuda_core
231231
pip install -r "tests/requirements-cu${TEST_CUDA_MAJOR}.txt"
232-
pytest -rxXs -v tests/
232+
pytest -ra -s -v tests/
233233
234234
# It is a bit convoluted to run the Cython tests against CTK wheels,
235235
# so let's just skip them. Also, currently our CI always installs the
@@ -243,7 +243,7 @@ jobs:
243243
# TODO: enable this once win-64 runners are up
244244
exit 1
245245
fi
246-
pytest -rxXs -v tests/cython
246+
pytest -ra -s -v tests/cython
247247
fi
248248
popd
249249

.github/workflows/test-wheel-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
180180
Push-Location ./cuda_bindings
181181
pip install -r requirements.txt
182-
pytest -rxXs -v tests/
182+
pytest -ra -s -v tests/
183183
# skip Cython tests for now (NVIDIA/cuda-python#466)
184184
Pop-Location
185185
@@ -203,7 +203,7 @@ jobs:
203203
204204
Push-Location ./cuda_core
205205
pip install -r "tests/requirements-cu${TEST_CUDA_MAJOR}.txt"
206-
pytest -rxXs -v tests/
206+
pytest -ra -s -v tests/
207207
Pop-Location
208208
209209
- name: Ensure cuda-python installable

0 commit comments

Comments
 (0)