diff options
author | nkshrishail <42039941+nkshrishail@users.noreply.github.com> | 2020-01-08 09:13:23 +0100 |
---|---|---|
committer | Nilashish Chakraborty <nilashishchakraborty8@gmail.com> | 2020-01-08 09:13:23 +0100 |
commit | 01e4c41be4de5217fd10ab6e43322602c22eb357 (patch) | |
tree | 441cb33d5b65d4983b94b3ab652f9d7bb8baf6ab /test/integration/targets/nxos_pim | |
parent | Track source of vars (diff) | |
download | ansible-01e4c41be4de5217fd10ab6e43322602c22eb357.tar.xz ansible-01e4c41be4de5217fd10ab6e43322602c22eb357.zip |
nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068)
* 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
Diffstat (limited to 'test/integration/targets/nxos_pim')
-rw-r--r-- | test/integration/targets/nxos_pim/tasks/nxapi.yaml | 6 | ||||
-rw-r--r-- | test/integration/targets/nxos_pim/tests/common/sanity.yaml | 8 |
2 files changed, 0 insertions, 14 deletions
diff --git a/test/integration/targets/nxos_pim/tasks/nxapi.yaml b/test/integration/targets/nxos_pim/tasks/nxapi.yaml index 04c99602e6..cbf41b9294 100644 --- a/test/integration/targets/nxos_pim/tasks/nxapi.yaml +++ b/test/integration/targets/nxos_pim/tasks/nxapi.yaml @@ -25,9 +25,3 @@ with_items: "{{ test_items }}" loop_control: loop_var: test_case_to_run - -- name: run test cases (connection=local) - include: "{{ test_case_to_run }} ansible_connection=local connection={{ nxapi }}" - with_items: "{{ test_items }}" - loop_control: - loop_var: test_case_to_run diff --git a/test/integration/targets/nxos_pim/tests/common/sanity.yaml b/test/integration/targets/nxos_pim/tests/common/sanity.yaml index be374ec550..7cf12b5eca 100644 --- a/test/integration/targets/nxos_pim/tests/common/sanity.yaml +++ b/test/integration/targets/nxos_pim/tests/common/sanity.yaml @@ -1,12 +1,9 @@ --- - debug: msg="START connection={{ ansible_connection }} nxos_pim sanity test" -- debug: msg="Using provider={{ connection.transport }}" - when: ansible_connection == "local" - name: "Setup: Disable features" nxos_feature: &disable_feature feature: "{{ item }}" - provider: "{{ connection }}" state: disabled ignore_errors: yes loop: @@ -16,7 +13,6 @@ - name: "Setup: Enable features" nxos_feature: feature: "{{ item }}" - provider: "{{ connection }}" state: enabled loop: - pim @@ -25,7 +21,6 @@ - name: "Setup: Configure ssm_range none" nxos_pim: &none ssm_range: "none" - provider: "{{ connection }}" - block: - name: Initial config from none @@ -34,7 +29,6 @@ ssm_range: - "239.128.1.0/24" - "224.0.0.0/8" - provider: "{{ connection }}" register: result - assert: &true @@ -53,7 +47,6 @@ nxos_pim: &conf_default bfd: disable ssm_range: "default" - provider: "{{ connection }}" register: result - assert: *true @@ -81,7 +74,6 @@ - name: "Teardown: Disable features" nxos_feature: feature: "{{ item }}" - provider: "{{ connection }}" state: disabled ignore_errors: yes loop: |