diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8d984e5873..d39b959bb9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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 }}" diff --git a/.github/workflows/ngtcp2-linux.yml b/.github/workflows/ngtcp2-linux.yml index 3eeb0cd69a..338418cbb1 100644 --- a/.github/workflows/ngtcp2-linux.yml +++ b/.github/workflows/ngtcp2-linux.yml @@ -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 diff --git a/.github/workflows/quiche-linux.yml b/.github/workflows/quiche-linux.yml index f2b2bafa14..69c328b47b 100644 --- a/.github/workflows/quiche-linux.yml +++ b/.github/workflows/quiche-linux.yml @@ -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 }}"