Bryan Cook
Bryan Cook
Hey Pester Team, I think it would be useful if you could control the verbosity of the coverage report independently from the Output preference. Motivation: we have a set of...
**Describe the bug** When I use ```az devops invoke``` for [Builds - Get Build Changes](https://docs.microsoft.com/en-us/rest/api/azure/devops/build/builds/get%20build%20changes?view=azure-devops-rest-5.1) it fails and prompts for parameters for [Builds - Get Changes Between Builds](https://docs.microsoft.com/en-us/rest/api/azure/devops/build/builds/get%20changes%20between%20builds?view=azure-devops-rest-5.1) My investigation...
Ideally, `gharun azexpand` should only provide an expanded template or template validation errors as output. Presently, it contains a mix of `TraceWriter` and final output if the `--quiet` flag isn't...
Exceptions should not propagate to end-users through public interfaces unless they are the result of uncaught issues in the application logic. Expected: ```bash c:\> gharun -W /pipelines/pipeline1.yml The template is...
Consider the following ```yaml # pipeline.yml steps: - template: steps.yml ``` ```yaml # steps.yml parameters: - name: required type: string # no default value steps: - script: exit 0 ```...
Consider the following: ```yaml # pipeline.yml steps: - template: steps.yml parameters: speltWrong: true ``` ```yaml # stages.yml parameters: - name: spelledWrong type: string default: '' steps: - script: exit 0...
Not sure exactly when it is occurring, but I'm using Update-SQL to write a PSCustomObject to a table and the `pstypename` column is being dynamically added to my table. My...
I have the following setup: ``` public class CommandArgs { [Parameter("verbose", Required = Required.No) public bool Verbose { get; set; } [Command("go")] public GoCommand GoCmd { get; set; } }...
**Describe the bug** Looks like a possible regression of #260 **To Reproduce** ```csharp var content = @" key1: value1 key2: value2 key3: key4: value4 key5: value5 key6: - item1 -...