Skip to content

Commit

Permalink
Fix regex pattern for ext seq scenario (Azure#3162)
Browse files Browse the repository at this point in the history
  • Loading branch information
maddieford authored Jul 16, 2024
1 parent a97c637 commit 23d4c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_e2e/tests/ext_sequencing/ext_sequencing.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def run(self):
# fail. We know an extension should fail if "failing" is in the case name. Otherwise, report the
# failure.
deployment_failure_pattern = r"[\s\S]*\"details\": [\s\S]* \"code\": \"(?P<code>.*)\"[\s\S]* \"message\": \"(?P<msg>.*)\"[\s\S]*"
msg_pattern = r"Multiple VM extensions failed to be provisioned on the VM. Please see the VM extension instance view for other failures. The first extension failed due to the error: VM Extension '.*' is marked as failed since it depends upon the VM Extension 'CustomScript' which has failed."
msg_pattern = r"Multiple VM extensions failed to be provisioned on the VM.*VM Extension '.*' is marked as failed since it depends upon the VM Extension 'CustomScript' which has failed."
deployment_failure_match = re.match(deployment_failure_pattern, str(e))
if "failing" not in case.__name__:
fail("Extension template deployment unexpectedly failed: {0}".format(e))
Expand Down

0 comments on commit 23d4c5b

Please sign in to comment.