You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dotnet test command has a --blame flag that is missing from DotNetCoreTestSettings. This should be added as it is very usefule for when the test process crashes. I turn it on on in all my CI test runs. Here is the documentation for the flag:
--blame
Run the tests in blame mode. This option is helpful in isolating a problematic test causing the test host to crash.
Outputs a 'Sequence.xml' file in the current directory that captures the order of execution of test before the crash.
The text was updated successfully, but these errors were encountered:
The
dotnet test
command has a--blame
flag that is missing fromDotNetCoreTestSettings
. This should be added as it is very usefule for when the test process crashes. I turn it on on in all my CI test runs. Here is the documentation for the flag:The text was updated successfully, but these errors were encountered: