summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_ntp
diff options
context:
space:
mode:
authorNathaniel Case <this.is@nathanielca.se>2017-09-28 15:09:30 -0400
committerGitHub <noreply@github.com>2017-09-28 15:09:30 -0400
commitd07d9390d70a4e4589de3df61c5162982aff9232 (patch)
treed08140bb6766d7f3de1c68cd668b868f4c873118 /test/integration/targets/nxos_ntp
parent95abc1d82e4c40832c802253107ad3f9aeebc68d (diff)
downloadansible-d07d9390d70a4e4589de3df61c5162982aff9232.tar.gz
Stop toggling nxapi (#28532)
* Stop toggling nxapi all the time * Update failed_modules * Restore nxapi state at each toggle
Diffstat (limited to 'test/integration/targets/nxos_ntp')
-rw-r--r--test/integration/targets/nxos_ntp/tasks/nxapi.yaml13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/integration/targets/nxos_ntp/tasks/nxapi.yaml b/test/integration/targets/nxos_ntp/tasks/nxapi.yaml
index ea525379f7..148d8d6486 100644
--- a/test/integration/targets/nxos_ntp/tasks/nxapi.yaml
+++ b/test/integration/targets/nxos_ntp/tasks/nxapi.yaml
@@ -8,21 +8,8 @@
- name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
-- name: enable nxapi
- nxos_config:
- lines:
- - feature nxapi
- - nxapi http port 80
- provider: "{{ cli }}"
-
- name: run test case
include: "{{ test_case_to_run }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
-
-- name: disable nxapi
- nxos_config:
- lines:
- - no feature nxapi
- provider: "{{ cli }}"