Skip to content

Commit

Permalink
Using $(BuildConfiguration) for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Mar 21, 2019
1 parent 4208d10 commit 2776e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ steps:
configuration: '$(BuildConfiguration)'

- powershell: |
& "$env:userprofile/.nuget/packages/xunit.runner.console/2.4.1/tools/net472/xunit.console.x86.exe" (Get-Childitem -Filter "BuildVision.IntegrationTests.dll" -Recurse | Where-Object {$_.FullName -like "*\bin\Debug\*" }).FullName
& "$env:userprofile/.nuget/packages/xunit.runner.console/2.4.1/tools/net472/xunit.console.x86.exe" (Get-Childitem -Filter "BuildVision.IntegrationTests.dll" -Recurse | Where-Object {$_.FullName -like "*\bin\$(BuildConfiguration)\*" }).FullName
displayName: Execute Integration Tests

- task: PublishBuildArtifacts@1
Expand Down

0 comments on commit 2776e37

Please sign in to comment.