Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xUnit.net + dotCover meta-runner does not capture HTML report artifacts #137

Open
MitchMcHenry1 opened this issue Mar 19, 2019 · 0 comments

Comments

@MitchMcHenry1
Copy link

When "Export dotCover report" is enabled and report type is HTML, the html file (dotCoverReport.html) is captured in the artifacts, but the folder containing all the reports assets (css, images, js, etc.) is not.

To have a functional html report we need to capture the assets folder as well. This worked for me:

Write-Output "##teamcity[publishArtifacts '$dotCoverReportFile']"

if ($dotCoverReportType.ToUpper() -eq 'HTML') {
    $dotCoverReportFolder = $dotCoverReportFile.Substring(0, $dotCoverReportFile.LastIndexOf('.'))
    Write-Output "##teamcity[publishArtifacts '$dotCoverReportFolder\ => $dotCoverReportFolder']"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant