CoverallsAliases.

CoverallsIo(ICakeContext, FilePath, CoverallsIoSettings) Method

Summary

Uploads the code coverage report to Coveralls.io using the coveralls.io tool with the specified settings
Assembly
Cake.Coveralls.dll
Namespace
Cake.Coveralls
Containing Type
CoverallsAliases

Syntax

public static void CoverallsIo(this ICakeContext context, FilePath codeCoverageReportFilePath, CoverallsIoSettings settings)

Examples

CoverallsIo("coverage.xml", new CoverallsIoSettings()
{
    RepoToken = "abcdef"
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
codeCoverageReportFilePath FilePath The path to the code coverage file.
settings CoverallsIoSettings The settings.

Return Value

Type Description
void