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: