diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2021-03-25 21:06:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 01:06:01 +0000 |
commit | c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc (patch) | |
tree | 84f3406b82b193477311737d01cf0fa833ac51a9 /tests | |
parent | c3b2d036bd0c0bf8d338123375a7bcc7de809f34 (diff) | |
download | vyos-ansible-old-c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc.tar.gz vyos-ansible-old-c936f0c6d7138e23f4d8c14c4bb1c5727ab303fc.zip |
Add regex to match the 'delete' failures (#134)
Add regex to match the 'delete' failures
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/targets/vyos_system/tests/cli/basic.yaml | 2 | ||||
-rw-r--r-- | tests/integration/targets/vyos_system/tests/cli/net_system.yaml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/integration/targets/vyos_system/tests/cli/basic.yaml b/tests/integration/targets/vyos_system/tests/cli/basic.yaml index 9c3c09f..29309e2 100644 --- a/tests/integration/targets/vyos_system/tests/cli/basic.yaml +++ b/tests/integration/targets/vyos_system/tests/cli/basic.yaml @@ -2,6 +2,7 @@ - debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}" - name: setup + ignore_errors: true vyos.vyos.vyos_config: lines: - delete system name-server 192.0.2.1 @@ -51,6 +52,7 @@ - result.commands[0] is search("delete system name-server '192.0.2.3'") - name: teardown + ignore_errors: true vyos.vyos.vyos_config: lines: - delete system name-server name-server 192.0.2.1 diff --git a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml b/tests/integration/targets/vyos_system/tests/cli/net_system.yaml index 3e68d20..758ba40 100644 --- a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml +++ b/tests/integration/targets/vyos_system/tests/cli/net_system.yaml @@ -3,6 +3,7 @@ }}" - name: setup + ignore_errors: true vyos.vyos.vyos_config: lines: - delete system name-server 192.0.2.1 @@ -20,6 +21,7 @@ - result.commands[0] is search("set system name-server '192.0.2.1'") - name: setup + ignore_errors: true vyos.vyos.vyos_config: lines: - delete system name-server 192.0.2.1 |