Skip to content

Commit 4c8eecf

Browse files
dfandrichptitSeb
authored andcommitted
CI: run pytest with the -v option
This lists of the test cases being run so it can be tracked over time. Closes curl#11824
1 parent 6c5797a commit 4c8eecf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ jobs:
404404
# run for `tests` directory, so pytest does not pick up any other
405405
# packages we might have built here
406406
run:
407-
pytest tests
407+
pytest -v tests
408408
name: 'run pytest'
409409
env:
410410
TFLAGS: "${{ matrix.build.tflags }}"

.github/workflows/ngtcp2-linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,13 @@ jobs:
263263
env:
264264
TFLAGS: "${{ matrix.build.tflags }}"
265265

266-
- run: pytest tests
266+
- run: pytest -v tests
267267
name: 'run pytest'
268268
env:
269269
TFLAGS: "${{ matrix.build.tflags }}"
270270
CURL_CI: github
271271

272-
- run: pytest tests
272+
- run: pytest -v tests
273273
name: 'run pytest with slowed network'
274274
env:
275275
# 33% of sends are EAGAINed

.github/workflows/quiche-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
env:
203203
TFLAGS: "${{ matrix.build.tflags }}"
204204

205-
- run: pytest tests
205+
- run: pytest -v tests
206206
name: 'run pytest'
207207
env:
208208
TFLAGS: "${{ matrix.build.tflags }}"

0 commit comments

Comments
 (0)