From cb33a1d114eb3ceb599e75f6537536df6d2732df Mon Sep 17 00:00:00 2001 From: asgibso1 Date: Fri, 4 Aug 2023 18:03:28 -0400 Subject: [PATCH] Put coverage report in its own section --- .github/workflows/unit-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 143ff36b..18f537a2 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -20,6 +20,6 @@ jobs: python -m pip install --upgrade pip if [ -f requirements_pip.txt ]; then pip install -r requirements_pip.txt; fi - name: Test with pytest - run: | - python -m coverage run --branch --source=src,data_handling,utils -m pytest ./test/ - coverage report \ No newline at end of file + run: python -m coverage run --branch --source=src,data_handling,utils -m pytest ./test/ + - name: Coverage report + run: coverage report