coverage-prepare

Crates.iocoverage-prepare
lib.rscoverage-prepare
version0.3.1
sourcesrc
created_at2022-08-19 14:31:45.938975
updated_at2022-10-28 11:26:59.647208
descriptionConvert coverage data to HTML reports, LCOV files or terminal tables
homepagehttps://github.com/samuelcolvin/coverage-prepare/
repositoryhttps://github.com/samuelcolvin/coverage-prepare/
max_upload_size
id648728
size22,051
Samuel Colvin (samuelcolvin)

documentation

README

Coverage Prepare

CI Crates.io

Convert coverage data to HTML reports, LCOV files or terminal tables.

coverage-prepare --help:

Convert "profraw" coverage data to:
* HTML reports
* terminal table reports
* LCOV files (for upload to codecov etc.)

See https://github.com/samuelcolvin/coverage-prepare/ for more information.

USAGE:
    coverage-prepare [OPTIONS] <OUTPUT_FORMAT> [BINARIES]...

ARGS:
    <OUTPUT_FORMAT>
            output format
            
            [possible values: html, report, lcov]

    <BINARIES>...
            binary files to build coverage from

OPTIONS:
    -h, --help
            Print help information

        --ignore-filename-regex <IGNORE_FILENAME_REGEX>
            maps to the `--ignore-filename-regex` argument to `llvm-cov`, `\.cargo/registry` &
            `library/std` are always ignored, repeat to ignore multiple filenames

        --no-delete
            whether to not delete the processed `.profraw` files and the generated `.profdata` file
            after generating the coverage reports, by default these files are deleted

    -o, --output-path <OUTPUT_PATH>
            Output path, defaults to `rust_coverage.lcov` for lcov output, and `htmlcov/rust` for
            html output

    -V, --version
            Print version information
Commit count: 9

cargo fmt