I have an excellent build server with a huge amount of RAM and processors. Also I have a project with a huge amount of MsTest tests (95% of which are simple unit tests). It is so disappointing to see these tests are executed one by one for 15 minutes. So I am looking for ways to execute these tests in parallel.
As I know TeamCity doesn't have native support for this. Of course you can create Build Configuration for each group of tests and execute them in parallel... but it sucks in many ways.
Continous Testing tools have excellent highly parallelized test runners inside. The best option I came to is to use them as Team City test runner but I have no idea how to implement it. Is there any way?