This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.MiniCover.
Summary
Set settings for coveralls report generation
- Assembly
- Cake
.MiniCover .dll - Namespace
- Cake
.MiniCover .Settings - Containing Type
- Mini
Cover Settings Extensions
Syntax
public static MiniCoverSettings WithCoverallsSettings(this MiniCoverSettings settings, Action<CoverallsSettings> coveralls)
Examples
// Publish coverage to Coveralls from travis-ci
var settings = new MiniCoverSettings().GenerateReport(ReportType.COVERALLS).WithCoverallsSettings(c => c.UseTravisDefaults());
Parameters
Name | Type | Description |
---|---|---|
settings | MiniCoverSettings | The settings. |
coveralls | Action |
Settings for coveralls |
Return Value
Type | Description |
---|---|
MiniCoverSettings | The MiniCoverSettings instance so that multiple calls can be chained |