From 8b175d99c6a9cbc9207d587ef934c3f25d52e46b Mon Sep 17 00:00:00 2001 From: Trishna Guha Date: Fri, 24 Aug 2018 10:51:57 +0530 Subject: [PATCH] ignore file_pull (#44614) Signed-off-by: Trishna Guha --- .../nxos_file_copy/tests/cli/sanity.yaml | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/test/integration/targets/nxos_file_copy/tests/cli/sanity.yaml b/test/integration/targets/nxos_file_copy/tests/cli/sanity.yaml index 937bcb4c8a..e8494e59a3 100644 --- a/test/integration/targets/nxos_file_copy/tests/cli/sanity.yaml +++ b/test/integration/targets/nxos_file_copy/tests/cli/sanity.yaml @@ -57,25 +57,27 @@ - assert: *false - - name: "Copy file using file_pull" - nxos_file_copy: ©_pull - file_pull: True - file_pull_timeout: 1200 - remote_file: "/network-integration.cfg" - local_file: "network-integration_copy.cfg" - local_file_directory: "dir1/dir2/dir3" - remote_scp_server: "{{ inventory_hostname_short }}" - remote_scp_server_user: "{{ ansible_ssh_user }}" - remote_scp_server_password: "{{ ansible_ssh_pass }}" - register: result + - block: + - name: "Copy file using file_pull" + nxos_file_copy: ©_pull + file_pull: True + file_pull_timeout: 1200 + remote_file: "/network-integration.cfg" + local_file: "network-integration_copy.cfg" + local_file_directory: "dir1/dir2/dir3" + remote_scp_server: "{{ inventory_hostname_short }}" + remote_scp_server_user: "{{ ansible_ssh_user }}" + remote_scp_server_password: "{{ ansible_ssh_pass }}" + register: result - - assert: *true + - assert: *true - - name: "Overwrite the file" - nxos_file_copy: *copy_pull - register: result + - name: "Overwrite the file" + nxos_file_copy: *copy_pull + register: result - - assert: *true + - assert: *true + ignore_errors: yes rescue: