From adc9e4a0239b60eaf8feaed4ff288b086acd5f74 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 1 Jun 2021 09:38:56 -0700 Subject: [PATCH] Updated ansible-test azure plugin help message. --- .../fragments/ansible-test-azure-plugin-help-cleanup.yml | 2 ++ .../ansible_test/_internal/commands/integration/cloud/azure.py | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml diff --git a/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml b/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml new file mode 100644 index 00000000000..43e0a4962d7 --- /dev/null +++ b/changelogs/fragments/ansible-test-azure-plugin-help-cleanup.yml @@ -0,0 +1,2 @@ +minor_changes: + - ansible-test - Updated the help message for failed tests in the ``azure`` test plugin. diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py b/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py index 59d78c67537..408410001fa 100644 --- a/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py +++ b/test/lib/ansible_test/_internal/commands/integration/cloud/azure.py @@ -163,8 +163,7 @@ class AzureCloudEnvironment(CloudEnvironment): def on_failure(self, target, tries): # type: (IntegrationTarget, int) -> None """Callback to run when an integration target fails.""" if not tries and self.managed: - display.notice('If %s failed due to permissions, the test policy may need to be updated. ' - 'For help, consult @mattclay or @gundalow on GitHub or #ansible-devel on IRC.' % target.name) + display.notice('If %s failed due to permissions, the test policy may need to be updated.' % target.name) def get_config(config_path): # type: (str) -> t.Dict[str, str]