From 07891029d5b1681da4fa8045c779a5489c0df0b8 Mon Sep 17 00:00:00 2001 From: Stijn de Boer Date: Fri, 8 Dec 2023 13:42:25 +0100 Subject: [PATCH] ADapt CI conf to print coverage to term --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1651689d..16777a63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,9 +30,7 @@ jobs: - name: Run Tests with coverage and save report run: | - coverage run -m pytest pytest/ - coverage xml -o coverage.xml - pytest pytest/ --junitxml=report.xml --html=report.html + coverage run -m pytest pytest/ --junitxml=report.xml --html=report.html continue-on-error: true # Continue to the next step even if tests fail - name: Upload HTML Report