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 - pytest
artifacts: artifacts:
reports: reports:
cobertura: coverage.xml coverage_report:
junit: junit.xml coverage_format: cobertura
path: ./coverage.xml
junit: ./junit.xml
paths: paths:
- .coverage.test - ./htmlcov/
needs: [build] needs: [build]