CI: run pytest with the -v option

This lists of the test cases being run so it can be tracked over time.

Closes #11824
This commit is contained in:
Dan Fandrich 2023-09-09 13:35:58 -07:00
parent 3046f477e4
commit 14108c1b80
3 changed files with 4 additions and 4 deletions

View File

@ -404,7 +404,7 @@ jobs:
# run for `tests` directory, so pytest does not pick up any other
# packages we might have built here
run:
pytest tests
pytest -v tests
name: 'run pytest'
env:
TFLAGS: "${{ matrix.build.tflags }}"

View File

@ -263,13 +263,13 @@ jobs:
env:
TFLAGS: "${{ matrix.build.tflags }}"
- run: pytest tests
- run: pytest -v tests
name: 'run pytest'
env:
TFLAGS: "${{ matrix.build.tflags }}"
CURL_CI: github
- run: pytest tests
- run: pytest -v tests
name: 'run pytest with slowed network'
env:
# 33% of sends are EAGAINed

View File

@ -202,7 +202,7 @@ jobs:
env:
TFLAGS: "${{ matrix.build.tflags }}"
- run: pytest tests
- run: pytest -v tests
name: 'run pytest'
env:
TFLAGS: "${{ matrix.build.tflags }}"