How to merge several result files together?
See original GitHub issueDue to https://github.com/AArnott/Library.Template/issues/2 and the various doc and product bugs linked from it, it seems the best workaround for now would be if we could merge several coverage.cobertura.xml
files into just one in order to pass it to the PublishCodeCoverageResults
task.
Does coverlet offer a means of doing that?
Any other suggestions?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:24 (10 by maintainers)
Top Results From Across the Web
How to Merge or Combine Multiple Files
To merge Microsoft Excel files together, it is best to save them as CSV files first. Open the Excel files and in the...
Read more >How To Merge Or Combine Multiple Files Into A Single File
How To Merge Or Combine Multiple Files Into A Single File If you have a bunch of text files in a folder on...
Read more >How to merge multiple Excel files into one
Three ways to merge multiple Excel files into one: by copying sheet tabs, running VBA, and using the Copy Worksheets tool.
Read more >Merge multiple CSV files into one Excel workbook
Merge multiple CSV files into one Excel file using Command Prompt ; Shift · Copy the path to the folder containing CSV files....
Read more >How to Merge [Combine] Multiple Excel FILES into ONE ...
Power Query is the best way to merge or combine data from multiple Excel files in a single file. You need to store...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Alternative: ReportGenerator can merge several Cobertura files and generate one result file.
It also generates HTML reports which might be useful for visualization.
I have a project with three different modules, two Java and one Python. all three modules generate Cobertura based code coverage reports. I am able to merge all three into one using @danielpalme “ReportGenerator” extension. able to apply gating condition using merged coverage report.