From df04deaee0eb098489bde8b40d5b771f30a5fc6f Mon Sep 17 00:00:00 2001 From: pgoslatara Date: Tue, 25 Jun 2024 18:20:43 +0200 Subject: [PATCH] Logging pytest stdout to file --- .github/workflows/ci_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_pipeline.yml b/.github/workflows/ci_pipeline.yml index 43aee41b..d00bc0bf 100644 --- a/.github/workflows/ci_pipeline.yml +++ b/.github/workflows/ci_pipeline.yml @@ -85,7 +85,7 @@ jobs: run: poetry install --no-interaction --no-ansi - name: Run pytest - run: make test + run: make test | tee pytest-coverage.txt && exit ${PIPESTATUS[0]} - name: Pytest coverage comment if: matrix.python-version == '3.11'