-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet test takes 19s, after we do dotnet add package AltCover it takes 1+hour #51
Comments
No, that is not normal. While there is necessarily some overhead in the coverage gathering, including needing to serialize the output in multi-threaded situations, I've not observed that factor of slowdown myself. For example, AltCover's own unit tests take 50s by themselves, but that only increases to 2 minutes when self-instrumenting, and that's including build time. Can you isolate a simple example of the problem that you can share? |
I have made changes in 5.0.665 which have improved the throughput and speeded unit tests for me; however I've not had such a pathological case to work with, si I don't know if it will make any difference for your case. |
Release v5.3.675 makes some significant speed-ups for |
When we executed a test execution using
dotnet test someProj.csproj
the test execution takes 19 seconds. After we add packages withdotnet add package AltCover
it takes more than 1 hour.The text was updated successfully, but these errors were encountered: