diff --git a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index e9753d7347a..4e58620ca1a 100644 --- a/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/command_modules/azure-cli-appservice/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -936,10 +936,11 @@ def test_webapp_list_locations_free_sku(self, resource_group): class WebappTriggeredWebJobListTest(ScenarioTest): @ResourceGroupPreparer() + @record_only() def test_webapp_triggeredWebjob_list(self, resource_group): # testing this using a webjob already created # given there is no create command inorder to re-record please create a webjob before - # recording this + # recording this. Once the create command is available, please remove the "record_only" flag resource_group_name = 'cliTestApp' webapp_name = 'cliTestApp' webjob_name = 'test-triggered' @@ -954,10 +955,11 @@ def test_webapp_triggeredWebjob_list(self, resource_group): class WebappContinuousWebJobE2ETest(ScenarioTest): @ResourceGroupPreparer() + @record_only() def test_webapp_continuousWebjob_e2e(self, resource_group): # testing this using a webjob already created # given there is no create command inorder to re-record please create a webjob before - # recording this + # recording this. Once the create command is available, please remove the "record_only" flag resource_group_name = 'cliTestApp' webapp_name = 'cliTestApp' webjob_name = 'test-continuous'