How to specify start timeout using VSTest.Console?

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?

+8
vstest
source share

No one has answered this question yet.

See similar questions:

0
TFS2015 Test Agent Aborted - PowerShell script with errors

or similar:

160
How to run NUnit tests in Visual Studio 2017?
39
Determining the result file name for vstest.console.exe
3
How to run a test list using VsTest.Console
one
Is it possible to test vstest.console tests by providing traits?
one
vstest.console throws a System.IO.FileNotFoundException
0
TypeInitializationException for failed tests in TeamCity using VSTest.Console Runner
0
VS Web Tests (MSTest) - How to set "One run in the data source line" when starting from vstest.console
0
jenkins threshold to cover code using vstest.console
0
VSTest - test data files for SpecFlow tests do not apply to TestResults
0
Visual Studio / TFS: how to provide configuration for unit tests when run from the console / command line

All Articles