Skip to content

Commit c1a7326

Browse files
authored
Merge branch 'main' into cdp_changes
2 parents 93ae466 + 6bfd46a commit c1a7326

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ repos:
4040
- prettier-plugin-toml
4141

4242
- repo: https://github.com/PyCQA/isort
43-
rev: 6.0.1
43+
rev: 6.1.0
4444
hooks:
4545
- id: isort
4646
name: Sort import statements using isort
4747
args: ["--filter-files"]
4848

49-
- repo: https://github.com/psf/black
50-
rev: 25.1.0
49+
- repo: https://github.com/psf/black-pre-commit-mirror
50+
rev: 25.9.0
5151
hooks:
5252
- id: black
5353

tests/integration/labs/inventory.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ansible_host={{ ansible_host }}
66
ansible_network_os={{ ansible_network_os | default('cisco.nxos.nxos') }}
77
ansible_user={{ ansible_user | default('ansible') }}
88
ansible_ssh_pass={{ ansible_ssh_pass | default('ansible') }}
9+
ansible_connection=ansible.netcommon.network_cli
910
ansible_network_cli_ssh_type={{ ansible_network_cli_ssh_type | default('libssh') }}
1011
ansible_ssh_port={{ ansible_ssh_port }}
1112
ansible_httpapi_port={{ ansible_http_port }}

tests/integration/targets/nxos_bgp_global/tests/common/deleted_af.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- ansible.builtin.debug:
3-
msg: Start nxos_bgp_global deleted_af integration tests connection={{ ansible_connection}}
3+
msg: Start nxos_bgp_global deleted_af integration tests connection={{ ansible_connection }}
44

55
- name: Remove pre-existing BGP configurations
66
cisco.nxos.nxos_config: &remove
@@ -19,9 +19,7 @@
1919
- " address-family ipv4 unicast"
2020
- " next-hop-self"
2121
- " remote-as 65538"
22-
- " affinity-group 160"
2322
- " description NBR-1"
24-
- " low-memory exempt"
2523
- "neighbor 192.0.2.1"
2624
- " remote-as 65537"
2725
vars:
@@ -58,10 +56,7 @@
5856
- " address-family ipv4 unicast"
5957
- " next-hop-self"
6058
- " remote-as 65538"
61-
- " affinity-group 160"
6259
- " description NBR-1"
63-
- " low-memory exempt"
64-
- " neighbor-down fib-accelerate"
6560

6661
- name: Remove a neighbor under a VRF having AF configurations (should fail)
6762
cisco.nxos.nxos_bgp_global: *deleted
@@ -93,11 +88,8 @@
9388
- " default-information originate"
9489
- " neighbor 203.0.113.2"
9590
- " remote-as 65538"
96-
- " affinity-group 160"
9791
- " description NBR-1"
98-
- " low-memory exempt"
9992
- "vrf site-2"
100-
- " neighbor-down fib-accelerate"
10193

10294
- name: Remove a neighbor under a VRF having AF configurations (should fail)
10395
cisco.nxos.nxos_bgp_global: *deleted

0 commit comments

Comments
 (0)