question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is ReportGenerator working with .coveragexml file?

See original GitHub issue

I’m having .coverage file as an output of code coverage tool in visual studio 2019. I want to use the danielpalme/ReportGenerator action. I can only convert my .coverage to a .coveragexml file. Can I use the danielpalme/ReportGenerator action with .coveragexml file? thank you.

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:9 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
danielpalmecommented, Oct 3, 2021

A little Powershell script should do the job:

$directory = (Get-ChildItem -Path TODO/TestResults -Force | Select-Object -First 1).Name
"CodeCoverage.exe" analyze /output:$dircectory/DynamicCodeCoverage.coveragexml DynamicCodeCoverage.coverage
1reaction
danielpalmecommented, Sep 30, 2021

The name of your input/output file.

Read more comments on GitHub >

github_iconTop Results From Across the Web

danielpalme/ReportGenerator
ReportGenerator supports merging several coverage files into a single report. ... ReportGenerator is a commandline tool which works with full .
Read more >
c# - dotnet-reportgenerator is not able to find any coverage. ...
The report file pattern '**/coverage.cobertura.xml' is invalid. No matching files found. When using ls to inspect the directory before running ...
Read more >
ReportGenerator
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov, or ...
Read more >
AltCover and ReportGenerator give amazing code ...
This is the OpenCover XML format and I can run ReportGenerator on the coverage file and get a whole bunch of HTML files....
Read more >
Coverage Reporting for C# Projects
This will create a directory named .coverage alongside your solution file and output the coverage report using the LCOV format with the name ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found