Jonathan Allen
Jonathan Allen

Reputation: 70327

What prevents MSTest from running in parallel?

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

Answers (3)

Pete Stensønes
Pete Stensønes

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

khr055
khr055

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

Mike Zboray
Mike Zboray

Reputation: 40828

Not having multiple cores. See this post.

Upvotes: 1

Related Questions