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

discontinued
outdated

Send LCOV and Clover coverage reports to the Coveralls service.

example/main.dart

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

/// Uploads a coverage report.
Future<void> main() async {
  try {
    final 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');
    if (err is ClientException) print('From: ${err.uri}');
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherbelin.io

Send LCOV and Clover coverage reports to the Coveralls service.

Homepage

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

build_cli_annotations, crypto, http, json_annotation, lcov, path, where, xml, yaml

More

Packages that depend on coveralls