Remove lcov from coverage job

This commit is contained in:
Arturo Marquez 2022-01-07 00:41:04 -06:00
parent 4ddddceeaa
commit 3633a78715
No known key found for this signature in database
GPG Key ID: 4770F4929D4B560A
1 changed files with 0 additions and 3 deletions

View File

@ -66,9 +66,6 @@ coverage:
- grcov . --binary-path ./target/x86_64-unknown-linux-gnu/ -s . -t html --branch --ignore-not-existing --ignore "*cargo*" -o ./coverage/
# generate cobertura report for gitlab integration
- grcov . --binary-path ./target/x86_64-unknown-linux-gnu/ -s . -t cobertura --branch --ignore-not-existing --ignore "*cargo*" -o coverage.xml
# output coverage summary for gitlab parsing
- apt-get update && apt-get install -y lcov
- lcov --summary coverage.xml
artifacts:
paths:
- 'coverage'