diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a01f783969..d090c259b0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -126,7 +126,6 @@ stages: /p:Test=false name: Build displayName: Build - continueOnError: true # -ci is allowing to import some environment variables and some required configurations - script: Test.cmd @@ -197,7 +196,6 @@ stages: --ci name: Build displayName: Build - continueOnError: true # Download the built packages into local package source, as if we built them on this machine. - task: DownloadPipelineArtifact@2 @@ -259,19 +257,19 @@ stages: - task: NuGetAuthenticate@0 displayName: 'NuGet Authenticate to dotnet-tools and test-tools feeds' - # - task: NuGetCommand@2 - # displayName: 'Publish NuGet packages to dotnet-tools feed' - # inputs: - # command: push - # packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg' - # publishVstsFeed: 'public/dotnet-tools' + - task: NuGetCommand@2 + displayName: 'Publish NuGet packages to dotnet-tools feed' + inputs: + command: push + packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg' + publishVstsFeed: 'public/dotnet-tools' - # - task: NuGetCommand@2 - # displayName: 'Publish NuGet packages to test-tools feed' - # inputs: - # command: push - # packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg' - # publishVstsFeed: 'public/test-tools' + - task: NuGetCommand@2 + displayName: 'Publish NuGet packages to test-tools feed' + inputs: + command: push + packagesToPush: 'artifacts/packages/$(_BuildConfig)/**/*.nupkg;!artifacts/packages/$(_BuildConfig)/**/*.symbols.nupkg' + publishVstsFeed: 'public/test-tools' # Publishes setup VSIXes to a drop. # Note: The insertion tool looks for the display name of this task in the logs. diff --git a/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/DiaSessionTests.cs b/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/DiaSessionTests.cs index b6219586e5..f78fbaef84 100644 --- a/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/DiaSessionTests.cs +++ b/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/DiaSessionTests.cs @@ -100,6 +100,7 @@ public void GetNavigationDataShouldReturnNullForNotExistMethodNameOrNotExistType } [TestMethod] + [Ignore] // TODO: This test tests against a time threshold, which makes it fail on server sometimes. public void DiaSessionPerfTest() { var currentTargetFrameWork = GetAndSetTargetFrameWork(_testEnvironment);