From 4d69059b8c4cbb03520c45214c29963d5f8f74da Mon Sep 17 00:00:00 2001 From: Patric Forsgard Date: Mon, 2 Dec 2024 15:35:15 +0100 Subject: [PATCH] Include messages to standard error, this to make the log complete --- src/dotnet-retest/RetestCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dotnet-retest/RetestCommand.cs b/src/dotnet-retest/RetestCommand.cs index 2c36c5e..94293a1 100644 --- a/src/dotnet-retest/RetestCommand.cs +++ b/src/dotnet-retest/RetestCommand.cs @@ -259,6 +259,7 @@ async Task RunTestsAsync(string dotnet, List args .WithArguments(finalArgs) .WithWorkingDirectory(Directory.GetCurrentDirectory()) .WithValidation(CommandResultValidation.None) + .WithStandardErrorPipe(PipeTarget.ToDelegate(progress.Report)) .WithStandardOutputPipe(PipeTarget.ToDelegate(progress.Report)) .ExecuteBufferedAsync();