From 356208c16f4a1e74da0fb956aab4d85a258b5885 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 7 Jul 2023 12:01:47 -0700 Subject: [PATCH] CI: enable verbose test output on pytest This shows individual pass/fail status on tests and makes this output consistent with other jobs' pytest invocations. --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 65cc28dc69..8d57999741 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -327,7 +327,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 }}"