@@ -286,6 +286,7 @@ def test_functionapp_on_linux_app_service_java_with_runtime_version(self, resour
286286 self .cmd ('functionapp config show -g {} -n {}' .format (resource_group , functionapp ), checks = [
287287 JMESPathCheck ('linuxFxVersion' , 'Java|11' )])
288288
289+ @live_only () # TODO: to be fixed
289290 @ResourceGroupPreparer (location = LINUX_ASP_LOCATION_FUNCTIONAPP )
290291 @StorageAccountPreparer ()
291292 def test_functionapp_on_linux_app_service_powershell (self , resource_group , storage_account ):
@@ -311,6 +312,7 @@ def test_functionapp_on_linux_app_service_powershell(self, resource_group, stora
311312 self .cmd ('functionapp config show -g {} -n {}' .format (resource_group , functionapp ), checks = [
312313 JMESPathCheck ('linuxFxVersion' , 'PowerShell|7.2' )])
313314
315+ @live_only () # TODO: to be fixed
314316 @ResourceGroupPreparer (location = LINUX_ASP_LOCATION_FUNCTIONAPP )
315317 @StorageAccountPreparer ()
316318 def test_functionapp_on_linux_app_service_powershell_with_runtime_version (self , resource_group , storage_account ):
@@ -594,6 +596,7 @@ def test_functionapp_consumption_linux_java(self, resource_group, storage_accoun
594596 self .cmd ('functionapp config appsettings list -g {} -n {}' .format (resource_group , functionapp_name ), checks = [
595597 JMESPathCheck ("[?name=='FUNCTIONS_WORKER_RUNTIME'].value|[0]" , 'java' )])
596598
599+ @live_only () # TODO: to be fixed
597600 @ResourceGroupPreparer (name_prefix = 'azurecli-functionapp-linux' , location = LINUX_ASP_LOCATION_FUNCTIONAPP )
598601 @StorageAccountPreparer ()
599602 def test_functionapp_consumption_linux_powershell (self , resource_group , storage_account ):
@@ -1415,6 +1418,7 @@ def test_functionapp_windows_runtime_java(self, resource_group, storage_account)
14151418 self .cmd ('functionapp config show -g {} -n {}' .format (resource_group , functionapp_name ), checks = [
14161419 JMESPathCheck ('javaVersion' , '17' )])
14171420
1421+ @live_only () # TODO: to be fixed
14181422 @ResourceGroupPreparer (location = WINDOWS_ASP_LOCATION_FUNCTIONAPP )
14191423 @StorageAccountPreparer ()
14201424 def test_functionapp_windows_runtime_powershell (self , resource_group , storage_account ):
@@ -2998,6 +3002,7 @@ def test_functionapp_create_with_vnet_no_subnet(self, resource_group, storage_ac
29983002 subnet_name , storage_account ), expect_failure = True )
29993003
30003004class FunctionAppConfigTest (ScenarioTest ):
3005+ @live_only () # TODO: to be fixed
30013006 @ResourceGroupPreparer (location = WINDOWS_ASP_LOCATION_FUNCTIONAPP )
30023007 @StorageAccountPreparer ()
30033008 def test_functionapp_powershell_version (self , resource_group , storage_account ):
0 commit comments