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

discontinued

Send LCOV and Clover coverage reports to the Coveralls service.

example/main.dart

// ignore_for_file: avoid_print
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
10
pub points
0%
popularity

Publisher

verified publisherbelin.io

Send LCOV and Clover coverage reports to the Coveralls service.

Homepage
Repository
View/report issues

License

unknown (LICENSE)

Dependencies

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

More

Packages that depend on coveralls