You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will allow us to publish code coverage reports to coveralls at the end of the build.
OpenCover exports the information in an xml format which the Coveralls GitHub Action, which we are using to report the information doesn't understand, so we need to first convert the file.
The text was updated successfully, but these errors were encountered:
OpenCover, which is used for gneerating a test coverage report
generates an XML file with the results. This format of report can't be
published to coveralls.io since the tool that we are using doesn't
support it.
Use ReportGenerator (had to also update to a newer version for this
support) to convert the xml file to a lcov file, which we can then
report to coveralls.io.
This will allow us to publish code coverage reports to coveralls at the end of the build.
OpenCover exports the information in an xml format which the Coveralls GitHub Action, which we are using to report the information doesn't understand, so we need to first convert the file.
The text was updated successfully, but these errors were encountered: