Temporarily disable vpc peer-link tests (#66121)

Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
(cherry picked from commit 97aefb8e11)
pull/66383/head
Nilashish Chakraborty 6 years ago committed by Matt Clay
parent 54e0b2aa30
commit 984e38d829

@ -57,20 +57,27 @@
that:
- "result.changed == false"
# The vpc peer-link command seems to be invalid for the NXOSv we have in Zuul CI
# Hence, we're temporarily skipping the tests that have `peer_link` key
- name: Configure vpc port channel
nxos_vpc_interface: &conf1
portchannel: 11
peer_link: True
provider: "{{ connection }}"
register: result
when: image_version != "7.0(3)I5(1)"
- assert: *true
when: image_version != "7.0(3)I5(1)"
- name: "Conf Idempotence"
nxos_vpc_interface: *conf1
register: result
when: image_version != "7.0(3)I5(1)"
- assert: *false
when: image_version != "7.0(3)I5(1)"
- name: Configure vpc port channel
nxos_vpc_interface: &conf2
@ -78,14 +85,18 @@
peer_link: False
provider: "{{ connection }}"
register: result
when: image_version != "7.0(3)I5(1)"
- assert: *true
when: image_version != "7.0(3)I5(1)"
- name: "Conf Idempotence"
nxos_vpc_interface: *conf2
register: result
when: image_version != "7.0(3)I5(1)"
- assert: *false
when: image_version != "7.0(3)I5(1)"
- name: remove vpc port channel
nxos_vpc_interface: &remove

Loading…
Cancel
Save