gitlab ci: fix coverage key

This commit is contained in:
Pierre Verkest 2023-09-01 14:46:25 +02:00
parent 7c4e819635
commit 9f757f41b6

View file

@ -61,10 +61,12 @@ test:
- pytest
artifacts:
reports:
cobertura: coverage.xml
junit: junit.xml
coverage_report:
coverage_format: cobertura
path: ./coverage.xml
junit: ./junit.xml
paths:
- .coverage.test
- ./htmlcov/
needs: [build]