diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index ca8b27e..644d62f 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -38,7 +38,8 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: Coverage Report + name: coverage_reports + include-hidden-files: true path: | .coverage coverage.xml diff --git a/Makefile b/Makefile index 1c2f0ec..4b70558 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: test format clean serve_docs test: - python3 -m pytest --cov-report xml --cov=. + python3 -m pytest --cov-report xml --cov=src format: python3 -m ruff check --select I --fix