coveralls 5.1.0+1 copy "coveralls: ^5.1.0+1" to clipboard
coveralls: ^5.1.0+1 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
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

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

More

Packages that depend on coveralls