Skip to content

Commit f93d52d

Browse files
committed
Propagate StopOnFail from config file => execution options
1 parent 5e70f54 commit f93d52d

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

src/xunit.console/ConsoleRunner.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -376,11 +376,12 @@ XElement ExecuteAssembly(object consoleLock,
376376
// Setup discovery and execution options with command-line overrides
377377
var discoveryOptions = TestFrameworkOptions.ForDiscovery(assembly.Configuration);
378378
var executionOptions = TestFrameworkOptions.ForExecution(assembly.Configuration);
379-
executionOptions.SetStopOnTestFail(stopOnFail);
380379
if (maxThreadCount.HasValue)
381380
executionOptions.SetMaxParallelThreads(maxThreadCount);
382381
if (parallelizeTestCollections.HasValue)
383382
executionOptions.SetDisableParallelization(!parallelizeTestCollections.GetValueOrDefault());
383+
if (stopOnFail)
384+
executionOptions.SetStopOnTestFail(stopOnFail);
384385

385386
var assemblyDisplayName = Path.GetFileNameWithoutExtension(assembly.AssemblyFilename);
386387
var diagnosticMessageSink = DiagnosticMessageSink.ForDiagnostics(consoleLock, assemblyDisplayName, assembly.Configuration.DiagnosticMessagesOrDefault, noColor);
@@ -427,7 +428,7 @@ XElement ExecuteAssembly(object consoleLock,
427428
resultsSink.Finished.WaitOne();
428429

429430
reporterMessageHandler.OnMessage(new TestAssemblyExecutionFinished(assembly, executionOptions, resultsSink.ExecutionSummary));
430-
if (stopOnFail && resultsSink.ExecutionSummary.Failed != 0)
431+
if (resultsSink.ExecutionSummary.Failed != 0 && executionOptions.GetStopOnTestFailOrDefault())
431432
{
432433
Console.WriteLine("Canceling due to test failure...");
433434
cancel = true;

src/xunit.execution/Extensions/TestFrameworkOptionsReadExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public static int MaxParallelThreadsOrDefault(this ITestFrameworkExecutionOption
167167
}
168168

169169
/// <summary>
170-
/// Gets a flag to stop testing on test failure. If the flag is not present, returns the
170+
/// Gets a flag to stop testing on test failure. If the flag is not present, returns the
171171
/// default value (<c>false</c>).
172172
/// </summary>
173173
public static bool StopOnTestFailOrDefault(this ITestFrameworkExecutionOptions executionOptions)

src/xunit.runner.msbuild/xunit.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ protected virtual XElement ExecuteAssembly(XunitProjectAssembly assembly, AppDom
324324
if (resultsSink.ExecutionSummary.Failed != 0)
325325
{
326326
ExitCode = 1;
327-
if (stopOnFail == true)
327+
if (executionOptions.GetStopOnTestFailOrDefault())
328328
{
329329
Log.LogMessage(MessageImportance.High, "Canceling due to test failure...");
330330
Cancel();

src/xunit.runner.utility/Extensions/TestFrameworkOptionsReadWriteExtensions.cs

+17
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,23 @@ public static int GetMaxParallelThreadsOrDefault(this ITestFrameworkExecutionOpt
242242
return result.GetValueOrDefault();
243243
}
244244

245+
/// <summary>
246+
/// Gets a flag that determines whether xUnit.net stop testing when a test fails.
247+
/// </summary>
248+
public static bool? GetStopOnTestFail(this ITestFrameworkExecutionOptions executionOptions)
249+
{
250+
return executionOptions.GetValue<bool?>(TestOptionsNames.Execution.StopOnFail);
251+
}
252+
253+
/// <summary>
254+
/// Gets a flag that determines whether xUnit.net stop testing when a test fails. If the flag
255+
/// is not set, returns the default value (<c>false</c>).
256+
/// </summary>
257+
public static bool GetStopOnTestFailOrDefault(this ITestFrameworkExecutionOptions executionOptions)
258+
{
259+
return executionOptions.GetStopOnTestFail() ?? false;
260+
}
261+
245262
/// <summary>
246263
/// Gets a flag that determines whether xUnit.net should report test results synchronously.
247264
/// </summary>

src/xunit.runner.utility/Frameworks/TestFrameworkOptions.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.Diagnostics;
3-
using System.Diagnostics.CodeAnalysis;
43
using System.Linq;
54
using Xunit.Abstractions;
65

@@ -24,7 +23,6 @@ public class TestFrameworkOptions : ITestFrameworkDiscoveryOptions, ITestFramewo
2423
/// Creates an instance of <see cref="TestFrameworkOptions"/>
2524
/// </summary>
2625
/// <param name="configuration">The optional configuration to copy values from.</param>
27-
[SuppressMessage("Language Usage Opportunities", "RECS0091:Use 'var' keyword when possible", Justification = "Using var here causes ambiguity with the SetDiagnosticMessages extension method")]
2826
public static ITestFrameworkDiscoveryOptions ForDiscovery(TestAssemblyConfiguration configuration = null)
2927
{
3028
ITestFrameworkDiscoveryOptions result = new TestFrameworkOptions();
@@ -45,7 +43,6 @@ public static ITestFrameworkDiscoveryOptions ForDiscovery(TestAssemblyConfigurat
4543
/// Creates an instance of <see cref="TestFrameworkOptions"/>
4644
/// </summary>
4745
/// <param name="configuration">The optional configuration to copy values from.</param>
48-
[SuppressMessage("Language Usage Opportunities", "RECS0091:Use 'var' keyword when possible", Justification = "Using var here causes ambiguity with the SetDiagnosticMessages extension method")]
4946
public static ITestFrameworkExecutionOptions ForExecution(TestAssemblyConfiguration configuration = null)
5047
{
5148
ITestFrameworkExecutionOptions result = new TestFrameworkOptions();
@@ -56,6 +53,7 @@ public static ITestFrameworkExecutionOptions ForExecution(TestAssemblyConfigurat
5653
result.SetInternalDiagnosticMessages(configuration.InternalDiagnosticMessages);
5754
result.SetDisableParallelization(!configuration.ParallelizeTestCollections);
5855
result.SetMaxParallelThreads(configuration.MaxParallelThreads);
56+
result.SetStopOnTestFail(configuration.StopOnFail);
5957
}
6058

6159
return result;

0 commit comments

Comments
 (0)