Disable eos_user eapi tests (#26895)

They are failing, so let's disable them and we investigate in other change
the fix.
We can revert this when fixed.
pull/9709/merge
Ricardo Carrillo Cruz 7 years ago committed by GitHub
parent bd24c4ce9d
commit d3fcb0d1de

@ -1,3 +1,2 @@
---
- { include: cli.yaml, tags: ['cli'] }
- { include: eapi.yaml, tags: ['eapi'] }

@ -1,43 +0,0 @@
---
- name: Create user
eos_user:
username: netend
privilege: 15
role: network-operator
state: present
authorize: yes
provider: "{{ eapi }}"
register: result
- assert:
that:
- 'result.changed == true'
- 'result.commands == ["username netend role network-operator", "username netend privilege 15"]'
- name: Collection of users
eos_user:
users:
- username: test1
- username: test2
authorize: yes
state: present
role: network-admin
provider: "{{ eapi }}"
register: result
- assert:
that:
- 'result.changed == true'
- 'result.commands == ["username test1 role network-admin", "username test2 role network-admin"]'
- name: tearDown
eos_user:
purge: yes
authorize: yes
provider: "{{ eapi }}"
register: result
- assert:
that:
- 'result.changed == true'
- 'result.commands == ["no username netend", "no username test1", "no username test2"]'
Loading…
Cancel
Save