From b630f470635e0f96332153ff4f81bed306eb63d2 Mon Sep 17 00:00:00 2001 From: Thomas Baumann Date: Fri, 2 Jun 2023 12:17:03 +0200 Subject: [PATCH] Split coverage and test actions because the GitHub action would not be marked as failed correctly --- .github/workflows/ci_pipeline.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_pipeline.yml b/.github/workflows/ci_pipeline.yml index b32490a60b..5e9669e2c1 100644 --- a/.github/workflows/ci_pipeline.yml +++ b/.github/workflows/ci_pipeline.yml @@ -82,6 +82,9 @@ jobs: import coverage coverage.process_startup() " > sitecustomize.py coverage run -m pytest --continue-on-collection-errors -v --durations=0 pySDC/tests -m ${{ matrix.env }} + + - name: Make coverage report + run: | mv data data_${{ matrix.python }} coverage combine mv .coverage coverage_${{ matrix.env }}_${{ matrix.python }}.dat