Fix latest pre-commit errors (#189)

This commit is contained in:
Chris Edillon
2024-10-22 09:55:55 -04:00
committed by GitHub
parent a257597a7d
commit fe006bdb9e
6 changed files with 10 additions and 10 deletions

View File

@@ -9,8 +9,7 @@
tasks: tasks:
- name: Build controller launch jobs - name: Build controller launch jobs
ansible.builtin.set_fact: ansible.builtin.set_fact:
controller_launch_jobs: "{{ (controller_launch_jobs | d([])) controller_launch_jobs: "{{ (controller_launch_jobs | d([])) + [launch_jobs | combine({'extra_vars': {'demo': item}})] }}"
+ [launch_jobs | combine( {'extra_vars': { 'demo': item }})] }}"
loop: "{{ demos }}" loop: "{{ demos }}"
- name: Default Components - name: Default Components

View File

@@ -20,8 +20,9 @@
gather_network_resources: all gather_network_resources: all
when: ansible_network_os == 'cisco.nxos.nxos' when: ansible_network_os == 'cisco.nxos.nxos'
# TODO figure out why this keeps failing
- name: Gather all network resource and minimal legacy facts [Cisco IOS XR] - name: Gather all network resource and minimal legacy facts [Cisco IOS XR]
ignore_errors: true ignore_errors: true # noqa: ignore-errors
cisco.iosxr.iosxr_facts: cisco.iosxr.iosxr_facts:
gather_subset: min gather_subset: min
gather_network_resources: all gather_network_resources: all