Skip to content

Commit

Permalink
Merge branch 'vnext' into filter-test-explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink authored Feb 3, 2025
2 parents 4e59e67 + d4203b6 commit 1301912
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,7 @@ protected override Task SynchronizedRunTestsAsync(VSTestRunTestExecutionRequest
ITestExecutor executor = new NUnit3TestExecutor(isMTP: true);
using (cancellationToken.Register(executor.Cancel))
{
if (request.VSTestFilter.TestCases is { } testCases)
{
executor.RunTests(testCases, request.RunContext, request.FrameworkHandle);
}
else
{
executor.RunTests(request.AssemblyPaths, request.RunContext, request.FrameworkHandle);
}
executor.RunTests(request.AssemblyPaths, request.RunContext, request.FrameworkHandle);
}

return Task.CompletedTask;
Expand Down

0 comments on commit 1301912

Please sign in to comment.