Index.html reports 0 on everything #632
Answered
by
bmackeydhcs
bmackeydhcs
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
bmackeydhcs
Oct 25, 2023
Replies: 1 comment 2 replies
-
My report is generated via the command:
I modified my report to be
This created an XML based report as opposed to a JSON based report. And then I got proper results from reportgenerator. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
danielpalme
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My report is generated via the command:
dotnet test MyPath/Me.Tests/ /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=./coverage/ /p:Exclude=[xunit.*]*.MyPath/My.sln /p:ExcludeByFile=\"**/*.cshtml\"
I modified my report to be
/p:CoverletOutputFormat=cobertura
instead of
/p:CoverletOutputFormat=lcov
This created an XML based report as opposed to a JSON based report.
And then I got proper results from reportgenerator.