File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed
Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -59,17 +59,18 @@ stages:
5959 inputs :
6060 command : ' build'
6161 arguments : ' -c release'
62- - task : AzureCLI@2
63- displayName : ' Test master'
64- condition : and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')))
65- inputs :
66- azureSubscription : ' Microsoft Azure Sponsorship(6c9e2629-3964-4b24-bc32-97dafc8c90f3)'
67- scriptType : ' bash'
68- scriptLocation : ' inlineScript'
69- inlineScript : ' dotnet test -v n -c release -l trx --collect:"XPlat Code Coverage"'
62+ # Disabling tests that require Azure subscription until migrated.
63+ # - task: AzureCLI@2
64+ # displayName: 'Test master'
65+ # condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')))
66+ # inputs:
67+ # azureSubscription: 'Microsoft Azure Sponsorship(6c9e2629-3964-4b24-bc32-97dafc8c90f3)'
68+ # scriptType: 'bash'
69+ # scriptLocation: 'inlineScript'
70+ # inlineScript: 'dotnet test -v n -c release -l trx --collect:"XPlat Code Coverage"'
7071 - task : DotNetCoreCLI@2
71- displayName : ' Test Pull Request '
72- condition : and(succeeded(), eq(variables['build.reason'], 'PullRequest'))
72+ displayName : ' Unit testing '
73+ # condition: and(succeeded(), eq(variables['build.reason'], 'PullRequest'))
7374 inputs :
7475 command : ' test'
7576 arguments : ' -v n -c release -l trx --collect:"XPlat Code Coverage"'
Original file line number Diff line number Diff line change 22 <PropertyGroup >
33 <!-- General -->
44 <AssemblyName >Farmer</AssemblyName >
5- <Version >1.9.20 </Version >
5+ <Version >1.9.21 </Version >
66 <Description >Farmer makes authoring ARM templates easy!</Description >
77 <Copyright >Copyright 2019-2025 Compositional IT Ltd.</Copyright >
88 <Company >Compositional IT</Company >
Original file line number Diff line number Diff line change @@ -24,8 +24,9 @@ let allTests =
2424 AppGateway.tests
2525 AppInsights.tests
2626 AppInsightsAvailability.tests
27- if Build.isCiMaster then
28- AzCli.tests
27+ // Temporarily disabling end to end tests while transitioning to new subscription.
28+ //if Build.isCiMaster then
29+ // AzCli.tests
2930 AutoscaleSettings.tests
3031 AzureFirewall.tests
3132 B2cTenant.tests
You can’t perform that action at this time.
0 commit comments