Created
July 13, 2016 10:23
-
-
Save scrooby/2cb462d00d44a7b502b209438836eb02 to your computer and use it in GitHub Desktop.
FAKE dotCover coverage TeamCity integration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Target "TestCoverage" (fun _ -> | |
let filters = "" | |
!! unitTestsFiles | |
|> DotCoverNUnit3 (fun p -> | |
{ p with | |
Output = artifactsDir @@ "NUnitDotCover.snapshot" | |
Filters = filters }) nunitOptions | |
tracefn "##teamcity[importData type='dotNetCoverage' tool='dotcover' path='%s']" (artifactsDir @@ "NUnitDotCover.snapshot") | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment