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
I had success with using coverlet to get the coverage report for each of the test project using the dotnet test command as I described here: #184
However to save time on builds, I want to run the tests in parallel by testassemblies or xunit collection. Unfortunately dotnet test doesn't allow to run the tests in parallel however it seems we can do that with dotnet vstest command. But I need the test coverage too, so I was wondering if coverlet will work with dotnet vstest command.
Regards,
Vikas
The text was updated successfully, but these errors were encountered:
I want to run the tests in parallel by testassemblies or xunit collection.
I think that this doesn't work...coverlet instrumet dll injecting a static class, so you need to be sure to not instrument more than one time.
I think that we resolve this issue when we'll tackle #357
As @ppumkin adviced you could create a script that launch different test process, but you need to be sure to run one test(one session, so one process) for every target output folder, to avoid double instrumentation.
I'll close for now, feel free to reopen if we want go on with discussion.
Hi @tonerdo,
I had success with using coverlet to get the coverage report for each of the test project using the dotnet test command as I described here:
#184
However to save time on builds, I want to run the tests in parallel by testassemblies or xunit collection. Unfortunately dotnet test doesn't allow to run the tests in parallel however it seems we can do that with dotnet vstest command. But I need the test coverage too, so I was wondering if coverlet will work with dotnet vstest command.
Regards,
Vikas
The text was updated successfully, but these errors were encountered: