coverlet
coverlet copied to clipboard
Cross platform code coverage for .NET
Code coverage is reporting less than what it should have, a major module is not instrumented. ``` [coverlet] Unable to instrument module: /path/to/a/.dll, pdb without local source files, [/path/to/a//../GeneratedFile.Generated.cs] ```...
Our build process with coverlet > 3.0 tends to fail with an error like this: ``` C:\Users\VssAdministrator\.nuget\packages\coverlet.collector\3.0.4-preview.25\build\netstandard1.0\coverlet.collector.targets(48,5): error MSB3491: Could not write lines to file "..\..\_tests\net5.0\linux-musl-arm64\CoverletSourceRootsMapping". The process cannot access...
Hi there, I'm having trouble getting coverlet to run in my docker container. My problems seems similar to [this](https://github.com/coverlet-coverage/coverlet/issues/521) issue, although the problem persists, and there are some differences. #...
Hello, ### Problem description I have an issue using coverlet and xUnit to test and compute coverage on .NET Framework 4.8 project. (I use the coverlet console as entry point)...
More details here: https://github.com/advisories/GHSA-5crp-9r3c-p9vr
## TL;DR When adding *coverlet* into our CI pipe (to replace OpenCover), it has stochastic behavior in generating code coverage files. ## The setup PR with the changes to our...
I am running coverlet in a self-hosted GitLab instance to collect code coverage for Sonarqube. Problem is, we have Windows runners and the test job and the sonar job can...
I have CI setup with `dotnet test` running on sln file. Locally the command runs just fine, however, in CI in linux container I see that the first assemby being...
I'm trying to setup a CI/CD pipeline where we reduce the number of builds we do and just run our unit tests agains the built source, potentially on a different...
## Problem Coverlet automatically excludes third-party assemblies from the coverage analysis, since they are usually not interesting to the user. The heuristic for determining if an assembly is a third-party...