Skip to content

Commit

Permalink
Using righ tname for assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Mar 21, 2019
1 parent 7dadb21 commit 8c1b82a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ steps:
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'

- powershell: dotnet vstest (Get-Childitem -Filter "fiskaltrust.space.helipad.test.dll" -Recurse | Where-Object {$_.FullName -like "*\bin\$(BuildConfiguration)\*" }).FullName
- powershell: |
$testDll = (Get-Childitem -Filter "BuildVision.IntegrationTests.dll" -Recurse | Where-Object {$_.FullName -like "*\bin\$(BuildConfiguration)\*" }).FullName;
"Dll used for tests: $testDll"
dotnet vstest $testDll
displayName: Execute Integration Tests

- task: PublishBuildArtifacts@1
Expand Down

0 comments on commit 8c1b82a

Please sign in to comment.