In MSTest.exe, you can specify a common timeout for a test run by setting the attribute /TestSettings/Execution/Timeouts/@runTimeout in the .testsettings file.
With VSTest.Console.exe, .testsettings is deprecated in favor of .runsettings, which apparently has a completely different scheme (c, hmm, sparse documentation). I know that I can configure the .runsettings file to use the old MSTest mode (thereby allowing me to use the .testsettings file), but I would prefer to avoid this if possible.
Is there a way to set the start timeout in a .runsettings file? Or is there another way to get the same effect?
vstest
Jimmy
source share