TeamCity + MSTest - run only failed tests?

Is there a way to run only failed tests from a previous test run in TeamCity?

Even better, is it possible to somehow run only the selected tests? For example, if we want to run only certain test classes.

Is there any other mechanism we can handle? Maybe transferring some configuration file to MSTest during a subsequent test run?

The reason I'm asking about this is because we have employees who don't use Visual Studio, but they still need to run certain tests to see what happens.

+4
source share
1 answer

You can group those tests into categories. http://msdn.microsoft.com/en-us/library/dd286683.aspx

Use the "Advanced Command Line Options" in the MsTest Build Step to run only the test from your category.

+4
source

All Articles