This module now uses ESM modules from
v2.0.0, if you need to use CommonJS refer tov1.x.x
This simple package aim to parse lcov.info files and provide the total coverage Number without fancy formatting or anything else, either in stdout or programmatically.
Here's why:
- You need to assest coverage in your CI and fail below certain threshold
- you don't want to do unredable
awkchains - every other options outputs fancy colored output which is tediuous to parse and error prone
You can install locally
npm install lcov-totalYou can install globally
npm install -g lcov-totalOr use NPX
npx lcov-totalYou can use lcov-total from command line providing lcov.info file location eg:
npx lcov-total lcov.info
# 100.00If you pass the --gte=value flag you will get an exitCode 0 or 1 based on resulting coverage >= value expression, eg:
npx lcov-total lcov.info --gte=90
echo $?
# 0Or programmatically
import lcovTotal from "lcov-total";
lcovTotal("/path/to/lcov.info"); // this throws if any errorProject is pretty simple and straight forward for what is my needs, but if you have any idea you're welcome.
This projects uses commitlint with Angular configuration so be sure to use standard commit format or PR won't be accepted.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'feat(scope): some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
Simone Corsi - @im_simonecorsi
- lcov parsing mega switch - from davglass