4 instantiations of CommandResult
Infrastructure.Tests (4)
WorkflowScripts\ExtensionReleaseWorkflowTests.cs (4)
671return new CommandResult(process.ExitCode, output); 750return new CommandResult(process.ExitCode, output); 787return new CommandResult(process.ExitCode, output); 853return new CommandResult(process.ExitCode, output);
11 references to CommandResult
Infrastructure.Tests (11)
WorkflowScripts\ExtensionReleaseWorkflowTests.cs (11)
269var result = await RunBashSyntaxCheckAsync(script); 284var result = await RunBashScriptAsync( 315var result = await RunBashScriptAsync( 346var result = await RunBashScriptAsync( 552var result = await RunPythonScriptAsync(pythonExecutable, s_prBodyValidatorPath, [bodyPath]); 571var result = await RunPythonScriptAsync(pythonExecutable, s_prBodyValidatorPath, [bodyPath]); 641private async Task<CommandResult> RunPythonScriptAsync(string pythonExecutable, string scriptPath, IEnumerable<string> args) 726private async Task<CommandResult> RunBashSyntaxCheckAsync(string script) 753private async Task<CommandResult> RunBashScriptAsync(string scriptPath, IEnumerable<string> args, IReadOnlyDictionary<string, string?> environment) 823var chmodResult = await RunBashCommandAsync($"chmod +x \"{fakeGhPath}\""); 829private async Task<CommandResult> RunBashCommandAsync(string command)