01e4c41be4
* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
26 lines
540 B
YAML
26 lines
540 B
YAML
---
|
|
- debug: msg="START common/invalid.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: run invalid command
|
|
nxos_command:
|
|
commands: ['show foo']
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- name: run commands that include invalid command
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show foo
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- debug: msg="END common/invalid.yaml on connection={{ ansible_connection }}"
|