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
Adding a problem that I have hit before. It took me a while to understand the error, I resorted to using another code coverage tool that helped me identify why this error was shown. I'm hoping this helps other people who may see this error.
Copy file name to clipboardexpand all lines: Documentation/KnownIssues.md
+30
Original file line number
Diff line number
Diff line change
@@ -201,3 +201,33 @@ NB. Workaround doesn't work if test method itself explicitly creates an appdomai
201
201
SUT (System Under Test) assembly is also not listed in MSBuild logs - "Instrumented module" is missing for your dll.
202
202
203
203
*Solution*: Check whether deterministic build is turned on for your solution, if so, follow the [instructions](DeterministicBuild.md) on how to handle deterministic builds.
204
+
205
+
## Failure to produce Code Coverage Report
206
+
207
+
*Symptoms:*
208
+
209
+
```log
210
+
C:\Users\REDACTED\.nuget\packages\coverlet.msbuild\3.2.0\build\coverlet.msbuild.targets(39,5): error : Stream was too long. [REDACTED.csproj]
The XML code coverage report is too large for the coverlet to parse.
230
+
231
+
*Potential Solutions:*
232
+
* Reduce noise from auto generated code, for example excluding your EntityFrameworkCore Migrations namespace or automatically generated typed Http Clients. See [Excluding From Coverage](./MSBuildIntegration.md#excluding-from-coverage) for more information on ignoring namespaces from code coverage.
0 commit comments