diff options
author | Nathaniel Case <this.is@nathanielca.se> | 2018-07-02 15:43:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 15:43:51 +0200 |
commit | a1971259540ccc1be3df811252f5b832e7af2d87 (patch) | |
tree | deac7c985fecc5fd1567f604308d211df68e7db2 /test/integration/targets/nxos_pim | |
parent | Fix eos integration test failure (#42188) (diff) | |
download | ansible-a1971259540ccc1be3df811252f5b832e7af2d87.tar.xz ansible-a1971259540ccc1be3df811252f5b832e7af2d87.zip |
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider
* Manually verify the rest of the cases
* Add missing provider
Diffstat (limited to 'test/integration/targets/nxos_pim')
-rw-r--r-- | test/integration/targets/nxos_pim/tests/common/sanity.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_pim/tests/common/sanity.yaml b/test/integration/targets/nxos_pim/tests/common/sanity.yaml index 52f1125290..e4d25de5d5 100644 --- a/test/integration/targets/nxos_pim/tests/common/sanity.yaml +++ b/test/integration/targets/nxos_pim/tests/common/sanity.yaml @@ -6,16 +6,19 @@ - name: "Setup: Disable feature PIM" nxos_feature: &disable_feature feature: pim + provider: "{{ connection }}" state: disabled - name: "Setup: Enable feature PIM" nxos_feature: feature: pim + provider: "{{ connection }}" state: enabled - name: "Setup: Configure ssm_range none" nxos_pim: &none ssm_range: "none" + provider: "{{ connection }}" - block: - name: Configure ssm_range @@ -23,6 +26,7 @@ ssm_range: - "239.128.1.0/24" - "224.0.0.0/8" + provider: "{{ connection }}" register: result - assert: &true @@ -40,6 +44,7 @@ - name: Configure ssm_range default nxos_pim: &conf_default ssm_range: "default" + provider: "{{ connection }}" register: result - assert: *true |