From fa2f5039e291c1233739fa59c78f447912d9aa32 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Wed, 3 Mar 2021 18:15:11 -0800 Subject: [PATCH] Fix nuget authenticate (#1168) --- azure-pipelines/integrationtests.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/azure-pipelines/integrationtests.yml b/azure-pipelines/integrationtests.yml index 4658296b..888a6875 100644 --- a/azure-pipelines/integrationtests.yml +++ b/azure-pipelines/integrationtests.yml @@ -7,17 +7,19 @@ steps: displayName: 'Download secure file' inputs: secureFile: 'testsettings.json' - + - task: VisualStudioTestPlatformInstaller@1 displayName: 'Visual Studio Test Platform Installer' inputs: versionSelector: latestStable - + - task: UseDotNet@2 displayName: 'Use .NET Core sdk ' inputs: useGlobalJson: true - + + - task: NuGetAuthenticate@0 + - task: DotNetCoreCLI@2 displayName: 'dotnet build' inputs: @@ -30,7 +32,7 @@ steps: SourceFolder: '$(Agent.TempDirectory)' Contents: '**\testsettings.json' TargetFolder: '$(Build.SourcesDirectory)\test\Microsoft.SqlTools.ServiceLayer.IntegrationTests\bin\Debug\netcoreapp3.1' - + - task: DotNetCoreCLI@2 displayName: 'Run integration tests' inputs: @@ -39,7 +41,7 @@ steps: arguments: '--no-build' testRunTitle: 'SqlToolsService Integration Tests' enabled: false - + - task: VSTest@2 displayName: 'Run integration tests with code coverage' inputs: @@ -52,4 +54,3 @@ steps: rerunFailedThreshold: 15 rerunMaxAttempts: 1 continueOnError: true - \ No newline at end of file