Reputation: 70327
What can prevent MSTest from running in parallel? I set the parallelTestCount to 0, but it is still running one test at a time.
Upvotes: 15
Views: 3869
Reputation: 5675
You must not have any data collectors configured and you cant run any Coded UI tests.
This article contains all the details I think.
Upvotes: 3
Reputation: 29032
One possibility you may not have tried yet... This article mentions that you need to restart your environment before the changes will take effect. Also, have you made any changes to your testsettings before setting parallelTestCount to 0? If so you'd have to make the changes again. Hope this helps!
Upvotes: 9