File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ jobs:
234234
235235 # Load disabled scenarios from config file
236236 $disabledScenariosConfig = Get-Content -path (Join-Path $ENV:GITHUB_WORKSPACE "e2eTests/disabled-scenarios.json") -encoding UTF8 -raw | ConvertFrom-Json
237- $disabledScenarios = $disabledScenariosConfig.disabledScenarios
237+ $disabledScenarios = @( $disabledScenariosConfig | ForEach-Object { $_.scenario })
238238
239239 $scenariosJson = @{
240240 "matrix" = @{
Original file line number Diff line number Diff line change 1- {
2- "disabledScenarios" : [
3- " FederatedCredentials"
4- ],
5- "reason" : {
6- "FederatedCredentials" : " Azure resource migration work in progress"
1+ [
2+ {
3+ "scenario" : " FederatedCredentials" ,
4+ "reason" : " Azure resource migration work in progress"
75 }
8- }
6+ ]
You can’t perform that action at this time.
0 commit comments