69564206e0
* Handle nxos_feature issue where json isn't supported (#39150) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit9eff1f1d74
) * Integration Tests only: nxos_snmp_contact (#39318) * add integration test cases for snmp_contact * removing unnecessary files (cherry picked from commitbdb75cd82c
) * fix nxos_ntp issues (#39178) * fix nxos_ntp issues * review comments * fix idempotent fail case (cherry picked from commit2f99a17856
) * nxos_interface: AttributeError: 'NoneType' object has no attribute 'group' (#38544) This fixes an issue we recently encounteredi with nxos_interface: ``` Traceback (most recent call last): File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 777, in main have = map_config_to_obj(want, module) File "/tmp/ansible_JmLoba/ansible_module_nxos_interface.py", line 606, in map_config_to_obj obj['speed'] = re.search(r'speed (\d+)', body).group(1) AttributeError: 'NoneType' object has no attribute 'group' ``` (cherry picked from commitdca6e2d94d
) * fix nxos_snmp_community issues (#39258) (cherry picked from commit1afec5a48e
) * Add aggregate example in nxos_l2_interface module doc (#39275) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit86817cdd52
) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. … (#39074) * Fix misuse of 'self' in lib/ansible/module_utils/network/eos/eos.py. Method load_config * Fix all instances of self.config(self,... (cherry picked from commit80d7e22f5e
) * Fix for nxos_snmp_host issues (#39642) * fix snmp_host issues * source files * fix shippable * remove defaults to match arg spec (cherry picked from commitf99bae1776
) * fix nxos_snmp_traps issues (#39444) * fix snmp_traps code * add IT cases * fix shippable * fix shippable without ignore (cherry picked from commit99748cbfa4
) * changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
33 lines
942 B
YAML
33 lines
942 B
YAML
---
|
|
- name: collect common cli test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/common"
|
|
patterns: "{{ testcase }}.yaml"
|
|
connection: local
|
|
register: test_cases
|
|
|
|
- name: collect cli test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/cli"
|
|
patterns: "{{ testcase }}.yaml"
|
|
connection: local
|
|
register: cli_cases
|
|
|
|
- set_fact:
|
|
test_cases:
|
|
files: "{{ test_cases.files }} + {{ cli_cases.files }}"
|
|
|
|
- name: set test_items
|
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
|
|
|
- name: run test cases (connection=network_cli)
|
|
include: "{{ test_case_to_run }} ansible_connection=network_cli connection={}"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|
|
|
|
- name: run test case (connection=local)
|
|
include: "{{ test_case_to_run }} ansible_connection=local connection={{ cli }}"
|
|
with_first_found: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|