From 9d95ea08322a0fc83a666a1f939da23ede0d720c Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Fri, 14 Jul 2017 17:10:53 +0200 Subject: [PATCH] Bump EOS EAPI set hostname timeout param (#26810) For some reason, it's taking longer as usual in CI, bumping it makes the tests to pass on my manual testing. --- .../targets/eos_system/tests/eapi/set_hostname.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml b/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml index d26d9105b8..4d2a7bf1d0 100644 --- a/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml +++ b/test/integration/targets/eos_system/tests/eapi/set_hostname.yaml @@ -5,11 +5,13 @@ eos_config: lines: hostname switch match: none + timeout: 30 provider: "{{ eapi }}" - name: configure hostname eos_system: hostname: foo + timeout: 30 provider: "{{ eapi }}" register: result @@ -20,6 +22,7 @@ - name: verify hostname eos_system: hostname: foo + timeout: 30 provider: "{{ eapi }}" register: result @@ -31,6 +34,7 @@ eos_config: lines: "hostname {{ inventory_hostname }}" match: none + timeout: 30 provider: "{{ eapi }}" - debug: msg="END eapi/set_hostname.yaml"