diff --git a/.github/workflows/code-test.yml b/.github/workflows/code-test.yml index e6c4ea3..b2f9073 100644 --- a/.github/workflows/code-test.yml +++ b/.github/workflows/code-test.yml @@ -20,5 +20,6 @@ jobs: pip install pytest pytest-cov if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run tests - run: - coverage run -m pytest tests \ No newline at end of file + run: | + coverage run -m pytest tests + coverage report \ No newline at end of file