diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 9a2d24a..ca8b27e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -36,6 +36,13 @@ jobs: source venv/bin/activate make test + - uses: actions/upload-artifact@v4 + with: + name: Coverage Report + path: | + .coverage + coverage.xml + - name: Upload results to Codecov run: | source venv/bin/activate diff --git a/Makefile b/Makefile index e765118..1c2f0ec 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: test format clean serve_docs test: - python3 -m pytest --cov=. + python3 -m pytest --cov-report xml --cov=. format: python3 -m ruff check --select I --fix