Skip to content

Commit ee25d10

Browse files
committed
Update for 1.9.21 release and Azure subscription migration
1 parent e07003d commit ee25d10

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

azure-pipelines.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff 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"'

src/Farmer/Farmer.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

src/Tests/AllTests.fs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)