Last active
August 26, 2022 18:54
-
-
Save stepbester/e898f8c6468fd06e185d1f0291f972e3 to your computer and use it in GitHub Desktop.
An example step in Azure Pipelines that passes a test run parameter to the .NET CLI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- task: DotNetCoreCLI@2 | |
displayName: 'Run warp core tests' | |
inputs: | |
command: 'test' | |
projects: 'Starfleet.WarpCore.Test.csproj' | |
arguments: '-- TestRunParameters.Parameter(name="\""shipName"\"", value="\""Enterprise"\"")' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment