Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are not planning on supporting a create command for webjobs at this time. so may be remove this comment?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We never know :), maybe external users would contribute it...

resource_group_name = 'cliTestApp'
webapp_name = 'cliTestApp'
webjob_name = 'test-triggered'
Expand All @@ -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'
Expand Down