From: Dan Fandrich Date: Sat, 9 Sep 2023 20:35:58 +0000 (-0700) Subject: CI: run pytest with the -v option X-Git-Tag: curl-8_3_0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14108c1b80357291927ab5821a494e5924036f6e;p=thirdparty%2Fcurl.git CI: run pytest with the -v option This lists of the test cases being run so it can be tracked over time. Closes #11824 --- 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 }}"