ci: explicitly specify src/ as coverage directory
This commit is contained in:
parent
eddfa0bf6b
commit
0fb3cb0418
|
|
@ -38,7 +38,8 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Coverage Report
|
name: coverage_reports
|
||||||
|
include-hidden-files: true
|
||||||
path: |
|
path: |
|
||||||
.coverage
|
.coverage
|
||||||
coverage.xml
|
coverage.xml
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
.PHONY: test format clean serve_docs
|
.PHONY: test format clean serve_docs
|
||||||
test:
|
test:
|
||||||
python3 -m pytest --cov-report xml --cov=.
|
python3 -m pytest --cov-report xml --cov=src
|
||||||
|
|
||||||
format:
|
format:
|
||||||
python3 -m ruff check --select I --fix
|
python3 -m ruff check --select I --fix
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue