From 8c1b82a967779edd95dd3680bb5035dc94d7462f Mon Sep 17 00:00:00 2001 From: StefanKert Date: Thu, 21 Mar 2019 09:12:15 +0100 Subject: [PATCH] Using righ tname for assembly --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5de3ae81..f9078da0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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