lcov2badge

0.1.2 • Public • Published

lcov2badge

Build status

A simple tool that produces a badge inspired by shields.io from a lcov.info file

For example the following badge is self served by this project, not by any service provider. Click it to access a lcov report in HTML.

Tests code coverage status

Install

npm install lcov2badge

usage

var lcov2badge = require('lcov2badge');
lcov2badge.badge('./coverage/lcov.info', function(err, svgBadge){
    if (err) throw err;
    console.log(svgBadge);
});

Use options instead of file path as first parameter:

var options = {
    filePath: './coverage/lcov.info',
    okColor: 'green',  // default is 'brightgreen'
    warnColor: 'yellow',  // default is 'orange'
    koColor: 'orange',  // default is 'red'
    warnThreshold: 90,  // default is 80
    koThreshold: 70, // default is 60
    subject: 'cover' // default is 'coverage'
};
lcov2badge.badge(options, function(err, svgBadge){...});

Readme

Keywords

Package Sidebar

Install

npm i lcov2badge

Weekly Downloads

113

Version

0.1.2

License

MIT

Unpacked Size

14 kB

Total Files

9

Last publish

Collaborators

  • alban