Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonecorsi/lcov-total
⚙️ Parse LCOV output and return the average value, easily fail CI with a threshold
https://github.com/simonecorsi/lcov-total
average ci cli coverage lcov node npm parser tdd test
Last synced: 7 days ago
JSON representation
⚙️ Parse LCOV output and return the average value, easily fail CI with a threshold
- Host: GitHub
- URL: https://github.com/simonecorsi/lcov-total
- Owner: simonecorsi
- License: mit
- Created: 2020-06-03T10:56:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T16:56:22.000Z (17 days ago)
- Last Synced: 2024-10-22T06:08:52.633Z (16 days ago)
- Topics: average, ci, cli, coverage, lcov, node, npm, parser, tdd, test
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/lcov-total
- Size: 2.01 MB
- Stars: 12
- Watchers: 1
- Forks: 2
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
lcov-total
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier?style=flat-square)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)
![npm (scoped)](https://img.shields.io/npm/v/lcov-total?style=flat-square)
![license](https://img.shields.io/github/license/simonecorsi/lcov-total)## Table of contents
- [About](#about)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [Contact](#contact)
- [Acknowledgements](#acknowledgements)## About
> This module now uses ESM modules from `v2.0.0`, if you need to use CommonJS refer to `v1.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 `awk` chains
- every other options outputs fancy colored output which is tediuous to parse and error prone## Installation
You can install locally
```sh
npm install lcov-total
```You can install globally
```sh
npm install -g lcov-total
```Or use NPX
```sh
npx lcov-total
```## Usage
You can use `lcov-total` from command line providing `lcov.info` file location eg:
```sh
npx lcov-total lcov.info
# 100.00
```If you pass the `--gte=value` flag you will get an exitCode 0 or 1 based on resulting `coverage >= value` expression, eg:
```sh
npx lcov-total lcov.info --gte=90
echo $?
# 0
```Or programmatically
```js
import lcovTotal from "lcov-total";
lcovTotal("/path/to/lcov.info"); // this throws if any error
```## Contributing
Project is pretty simple and straight forward for what is my needs, but if you have any idea you're welcome.
This projects uses [commitlint](https://commitlint.js.org/) with Angular configuration so be sure to use standard commit format or PR won't be accepted.
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'feat(scope): some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
Distributed under the MIT License. See [`LICENSE`](./LICENSE) for more information.
## Contact
Simone Corsi - [@im_simonecorsi](https://twitter.com/im_simonecorsi)
## Acknowledgements
- [lcov parsing mega switch](https://github.com/davglass/lcov-parse) - from davglass