File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
src/Sql/Sql.Test/ScenarioTests
tools/ScenarioTest.ResourceManager Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ protected void RunPowerShellTest(params string[] scripts)
68
68
{ "Microsoft.Resources" , null } ,
69
69
{ "Microsoft.Features" , null } ,
70
70
{ "Microsoft.Authorization" , null } ,
71
- { "Microsoft.Network" , null }
71
+ { "Microsoft.Network" , null } ,
72
+ { "Microsoft.KeyVault" , null }
73
+
72
74
} ;
73
75
var providersToIgnore = new Dictionary < string , string >
74
76
{
@@ -93,7 +95,8 @@ protected void RunPowerShellTest(params string[] scripts)
93
95
"AzureRM.Resources.ps1" ,
94
96
Helper . RMOperationalInsightsModule ,
95
97
Helper . RMEventHubModule ,
96
- Helper . RMMonitorModule ) ;
98
+ Helper . RMMonitorModule ,
99
+ Helper . RMKeyVaultModule ) ;
97
100
Helper . RunPowerShellTest ( scripts ) ;
98
101
}
99
102
}
Original file line number Diff line number Diff line change @@ -108,6 +108,9 @@ public EnvironmentSetupHelper()
108
108
module = GetModuleManifest ( StackStorageDirectory , "Azure.Storage" ) ;
109
109
LogIfNotNull ( $ "Stack Storage Data Plane Module path: { module } ") ;
110
110
StackRMStorageDataPlaneModule = module ;
111
+ module = GetModuleManifest ( RmDirectory , "Az.KeyVault" ) ;
112
+ LogIfNotNull ( $ "KeyVault Module path: { module } ") ;
113
+ RMKeyVaultModule = module ;
111
114
112
115
TestExecutionHelpers . SetUpSessionAndProfile ( ) ;
113
116
IDataStore datastore = new MemoryDataStore ( ) ;
@@ -168,6 +171,8 @@ public EnvironmentSetupHelper()
168
171
169
172
public string StackRMStorageDataPlaneModule { get ; private set ; }
170
173
174
+ public string RMKeyVaultModule { get ; private set ; }
175
+
171
176
private void LogIfNotNull ( string message )
172
177
{
173
178
if ( this . TracingInterceptor != null )
You can’t perform that action at this time.
0 commit comments