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