From cbd8d88bf697563200ed69f13c3ecfdc88d71f05 Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Sat, 7 Jan 2023 22:05:33 +0100 Subject: [PATCH] ci/cd: speed up unit & integration tests (#13877) --- azure-pipelines.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 50d3051aa..2a262e27a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -440,16 +440,6 @@ stages: version: $(netCoreSdkVersion) installationPath: $(Agent.ToolsDirectory)/dotnet - # this task is a workaround to fix a bug in Azure (not required under normal circumstances) - # https://developercommunity.visualstudio.com/content/problem/983843/dotnet-build-task-does-not-use-nugetorg-for-one-pr.html - - task: DotNetCoreCLI@2 - displayName: Restore Test Project - inputs: - command: restore - projects: '**/*.Test*/*.csproj' - includeNuGetOrg: true - restoreArguments: '--runtime $(runtime)' - - task: DotNetCoreCLI@2 displayName: Unit Tests (Mono, Linux and macOS) condition: and(succeeded(), not(startsWith(variables['runtime'], 'win'))) @@ -566,16 +556,6 @@ stages: version: $(netCoreSdkVersion) installationPath: $(Agent.ToolsDirectory)/dotnet - # this task is a workaround to fix a bug in Azure (not required under normal circumstances) - # https://developercommunity.visualstudio.com/content/problem/983843/dotnet-build-task-does-not-use-nugetorg-for-one-pr.html - - task: DotNetCoreCLI@2 - displayName: Restore IntegrationTest Project - inputs: - command: restore - projects: '**/*IntegrationTest*/*.csproj' - includeNuGetOrg: true - restoreArguments: '--runtime $(runtime)' - - task: DotNetCoreCLI@2 displayName: Integration Tests (Mono, Linux and macOS) condition: and(succeeded(), not(startsWith(variables['runtime'], 'win')))