From 14108c1b80357291927ab5821a494e5924036f6e Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sat, 9 Sep 2023 13:35:58 -0700 Subject: [PATCH] CI: run pytest with the -v option This lists of the test cases being run so it can be tracked over time. Closes #11824 --- .github/workflows/linux.yml | 2 +- .github/workflows/ngtcp2-linux.yml | 4 ++-- .github/workflows/quiche-linux.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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 }}" -- 2.47.3