What can prevents MSTest from running in parallel? I set the parallelTestCount to 0, but it is still running one test at a time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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! |
|||||||
|
|
You must not have any data collectors configured and you cant run any Coded UI tests. This article contains all the details I think. |
||||
|
|