dart_codecov_generator 0.4.0 copy "dart_codecov_generator: ^0.4.0" to clipboard
dart_codecov_generator: ^0.4.0 copied to clipboard

discontinuedreplaced by: codecov
Dart 1 only

Generates lcov and/or HTML coverage reports for Dart projects. (UNIX only)

Dart Code Coverage Generator #

Build Status codecov.io

Generate code coverage for Dart projects. Output can be lcov format or an HTML report.

This project includes a dart_codecov_generator executable that runs one or many test files and uses the coverage package to collect coverage for each file and format the coverage into the desired output format.

Prerequisites #

Depends on the following utilities:

  • genhtml (brew install lcov on a mac)
  • lsof (standard unix utility)

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
  coverage: "^0.7.0"
  dart_codecov_generator: "^0.4.0"

Install:

pub get

Usage #

pub run dart_codecov_generator

Configuration #

By default, this tool runs every test file in the test/ directory. You can explicitly specify the directories or files like so:

pub run dart_codecov_generator test/my_test.dart

Options #

  • --report-on: Which directories or files to report coverage on. For example, --report-on=lib/.

Flags #

  • --html: Whether or not to generate the HTML report. Defaults to true.
  • --lcov: Whether or not to generate the .lcov file. Defaults to true.
  • --verbose: Toggle verbose output to stdout.
0
likes
10
pub points
0%
popularity

Publisher

unverified uploader

Generates lcov and/or HTML coverage reports for Dart projects. (UNIX only)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, logging

More

Packages that depend on dart_codecov_generator