-
|
Currently, this is my workflow for generating test coverage reports for a third party project that uses central package management and a
<ItemGroup>
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
</ItemGroup>
The issue here is that I basically have to go in and edit the files for the third party project every time I want to generate a report. I do my work with the help of the coverage report but then I have to delete the edits I make to the various files (test project files and the global This is quite clunky and an obstacle to generating quick coverage runs to just see what kind of test coverage I have for a specific class or subset of tests. Is there a way to use coverlet without having to modify any project files? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Please use coverlet.console instead of coverlet.collector. https://github.com/coverlet-coverage/coverlet/blob/master/Documentation/GlobalTool.md |
Beta Was this translation helpful? Give feedback.
Please use coverlet.console instead of coverlet.collector.
https://github.com/coverlet-coverage/coverlet/blob/master/Documentation/GlobalTool.md