Skip to content

Commit

Permalink
Fix dotnet test parameter syntax (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Cully authored Nov 14, 2023
1 parent 6b0ddda commit e60006d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/pipelines/dotnet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
inputs:
command: test
projects: '**\*.sln'
arguments: '-c $(BuildConfiguration) -p:$(BuildParameters) --no-build --no-restore --collect "Code coverage" --filter $(TestFilter)'
arguments: '-c $(BuildConfiguration) -p:${{ parameters.BuildParameters }} --no-build --no-restore --collect "Code coverage" --filter ${{ parameters.TestFilter }}'
timeoutInMinutes: 30

- task: PublishTestResults@2
Expand Down

0 comments on commit e60006d

Please sign in to comment.