| Crates.io | coverage2lcov |
| lib.rs | coverage2lcov |
| version | 0.1.0 |
| created_at | 2022-11-13 04:33:40.904844+00 |
| updated_at | 2022-11-13 04:33:40.904844+00 |
| description | A simple program to generate `lcov` file from data file generated by [coveragepy](https://github.com/nedbat/coveragepy ), when an older version of which does not have `coverage lcov` command. |
| homepage | |
| repository | https://github.com/yining/coverage2lcov |
| max_upload_size | |
| id | 713967 |
| size | 19,780 |
A simple cli tool to generate lcov data from data file generated by coveragepy, when an older version(< 6.3) of which does not have coverage lcov command to output coverage data in lcov format.
Note The output in the generated
lcovformat is very limited: onlyDArecord of uncovered lines in source files.
This started as a solution to a very specific problem in one of my workflows. It's very likely you do not need this tool.
coverage2lcov .coverage > lcov.info
cargo install coverage2lcov
or from git repository:
cargo install --git https://github.com/yining/coverage2lcov