coveralls 3.0.0 copy "coveralls: ^3.0.0" to clipboard
coveralls: ^3.0.0 copied to clipboard

discontinued
outdatedDart 1 only

Send LCOV and Clover coverage reports to the Coveralls service.

Coveralls for Dart #

Runtime Release License Coverage Build

Send LCOV and Clover coverage reports to the Coveralls service, in Dart.

Requirements #

The latest Dart SDK and Pub versions. If you plan to play with the sources, you will also need the latest Grinder version.

Usage #

Command line interface #

The easy way. From a command prompt, install the coveralls executable:

$ pub global activate coveralls

Consider adding the pub global executables directory to your system path.

Then use it to upload your coverage reports:

$ coveralls --help

Send a coverage report to the Coveralls service.

Usage:
coveralls [options] <file>

Options:
-h, --help           output usage information
-v, --version        output the version number

For example:

$ coveralls build/lcov.info

Programming interface #

The hard way. Add this to your project's pubspec.yaml file:

dependencies:
  coveralls: *

Then, from a command prompt, install the library:

$ pub get

Now in your Dart code, you can use the Client class to upload your coverage reports:

import 'dart:async';
import 'package:coveralls/coveralls.dart';

Future<void> main() async {
  try {
    var coverage = File('/path/to/coverage.report');
    await Client().upload(await coverage.readAsString());
    print('The report was sent successfully.');
  }

  on Exception catch (err) {
    print('An error occurred: $err');
  }
}

Features #

Coverage formats #

Currently, this package supports two formats of coverage reports:

  • LCOV: the de facto standard.
  • Clover: a common format produced by Java and PHP test frameworks.

CI services #

This project has been tested with Travis CI service, but these services should also work with no extra effort:

Environment variables #

If your build system is not supported, you can still use this package. There are a few environment variables that are necessary for supporting your build system:

  • COVERALLS_SERVICE_NAME : the name of your build system.
  • COVERALLS_REPO_TOKEN : the secret repository token from Coveralls.

There are optional environment variables:

  • COVERALLS_SERVICE_JOB_ID : a string that uniquely identifies the build job.
  • COVERALLS_RUN_AT : a date string for the time that the job ran. This defaults to your build system's date/time if you don't set it.

The full list of supported environment variables is available in the source code of the Configuration class (see the fromEnvironment() static method).

The .coveralls.yml file #

This package supports the same configuration sources as the Coveralls ones:
Coveralls currently supports

See also #

License #

Coveralls for Dart is distributed under the MIT License.

0
likes
0
pub points
0%
popularity

Publisher

verified publisherbelin.io

Send LCOV and Clover coverage reports to the Coveralls service.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

args, crypto, http, lcov, path, where, xml, yaml

More

Packages that depend on coveralls