diff --git a/.yamllint.yml b/.yamllint.yml index a27ced8..aae1ed0 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -4,46 +4,3 @@ extends: default ignore: | /.tox/ tests/roles/ -rules: - line-length: - ignore: '/tests/tasks/setup_mock_wifi_wpa3_owe.yml - - /tests/tasks/setup_mock_wifi_wpa3_sae.yml - - /tests/tests_ethtool_coalesce_initscripts.yml - - /tests/tests_ethtool_ring_initscripts.yml - - /tests/tests_route_device_initscripts.yml - - /tests/tests_team_plugin_installation_nm.yml - - /tests/tests_wireless_plugin_installation_nm.yml - - /tests/tests_wireless_wpa3_owe_nm.yml - - /tests/tasks/setup_mock_wifi_wpa3_owe.yml - - /tests/tests_auto_gateway_initscripts.yml - - /tests/tests_bond_deprecated_initscripts.yml - - /tests/tests_ethtool_features_initscripts.yml - - /tests/tests_wireless_wpa3_sae_nm.yml - - /tests/tests_eth_pci_address_match_nm.yml - - /tests/playbooks/tests_eth_pci_address_match.yml - - /tests/tasks/setup_802_1x_server.yml - - /tests/tests_bond_removal_initscripts.yml - - /tests/tests_bond_cloned_mac_initscripts.yml - - /tests/tests_bridge_cloned_mac_initscripts.yml - - /tests/tests_bridge_cloned_mac_nm.yml - - ' diff --git a/tests/ensure_provider_tests.py b/tests/ensure_provider_tests.py index 0d28585..c043764 100755 --- a/tests/ensure_provider_tests.py +++ b/tests/ensure_provider_tests.py @@ -45,6 +45,7 @@ RUN_PLAYBOOK_WITH_NM = """# SPDX-License-Identifier: BSD-3-Clause --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook '{test_playbook}' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' @@ -151,6 +152,7 @@ RUN_PLAYBOOK_WITH_INITSCRIPTS = """# SPDX-License-Identifier: BSD-3-Clause # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook '{test_playbook}' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/playbooks/tests_eth_pci_address_match.yml b/tests/playbooks/tests_eth_pci_address_match.yml index 47a9b2b..0a9bded 100644 --- a/tests/playbooks/tests_eth_pci_address_match.yml +++ b/tests/playbooks/tests_eth_pci_address_match.yml @@ -44,11 +44,11 @@ - name: pseudo-pci-test-only type: ethernet # When clearing the `match.path` setting through the role, the - # `interface_name` has to be defined, otherwise the `interface_name` - # will be the profile name. Since it is unclear if a specific - # interface exists for the test profile, by setting the - # `interface_name` to empty string, the role will accept any interface - # for the test profile. + # `interface_name` has to be defined, otherwise the + # `interface_name` will be the profile name. Since it is + # unclear if a specific interface exists for the test profile, + # by setting the `interface_name` to empty string, the role will + # accept any interface for the test profile. interface_name: "" state: down match: diff --git a/tests/tasks/setup_802_1x_server.yml b/tests/tasks/setup_802_1x_server.yml index bce11ed..772fdf8 100644 --- a/tests/tasks/setup_802_1x_server.yml +++ b/tests/tasks/setup_802_1x_server.yml @@ -2,7 +2,7 @@ --- # This task can be removed once the RHEL-8.5 is not tested anymore - name: Install hostapd via CentOS Stream - command: dnf -y install http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/hostapd-2.10-1.el8.x86_64.rpm + command: dnf -y install http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/hostapd-2.10-1.el8.x86_64.rpm # noqa yaml[line-length] when: - ansible_distribution_version | float < 8.6 - ansible_distribution_major_version == '8' diff --git a/tests/tasks/setup_mock_wifi_wpa3_owe.yml b/tests/tasks/setup_mock_wifi_wpa3_owe.yml index 3ab31ef..1666658 100644 --- a/tests/tasks/setup_mock_wifi_wpa3_owe.yml +++ b/tests/tasks/setup_mock_wifi_wpa3_owe.yml @@ -7,6 +7,7 @@ - wpa_supplicant state: present +# yamllint disable rule:line-length # Even though hostapd can be installed via EPEL 8, Opportunistic Wireless Encryption # (OWE) has not been enabled by default. To warrant the test support on RHEL(dist-tag), # we setup hostapd copr repo to enable OWE option. @@ -24,6 +25,7 @@ - ansible_distribution_major_version == '8' - ansible_distribution == 'CentOS' changed_when: false +# yamllint enable rule:line-length - name: Install hostapd in Fedora shell: | diff --git a/tests/tasks/setup_mock_wifi_wpa3_sae.yml b/tests/tasks/setup_mock_wifi_wpa3_sae.yml index 82ba6fd..470a53a 100644 --- a/tests/tasks/setup_mock_wifi_wpa3_sae.yml +++ b/tests/tasks/setup_mock_wifi_wpa3_sae.yml @@ -7,6 +7,7 @@ - wpa_supplicant state: present +# yamllint disable rule:line-length # Even though hostapd can be installed via EPEL 8, Simultaneous Authentication # of Equals (SAE) has not been enabled by default. To warrant the test support # on CentOS 8, we setup hostapd copr repo to enable SAE option. @@ -24,6 +25,7 @@ - ansible_distribution_major_version == '8' - ansible_distribution == 'CentOS' changed_when: false +# yamllint enable rule:line-length - name: Install hostapd in Fedora package: @@ -33,8 +35,9 @@ when: - ansible_distribution == 'Fedora' -# Since DNF package manager can not warrant installing the kernel module with the same -# version as the kernel in target machine, install the kernel module from koji instead +# Since DNF package manager can not warrant installing the kernel module with +# the same version as the kernel in target machine, install the kernel module +# from koji instead - name: Install mac80211_hwsim kernel module in Fedora shell: | dnf -y install koji diff --git a/tests/tests_802_1x_nm.yml b/tests/tests_802_1x_nm.yml index f2c9204..27e8606 100644 --- a/tests/tests_802_1x_nm.yml +++ b/tests/tests_802_1x_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_802_1x.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_802_1x_updated_nm.yml b/tests/tests_802_1x_updated_nm.yml index 4afd572..8b1d54c 100644 --- a/tests/tests_802_1x_updated_nm.yml +++ b/tests/tests_802_1x_updated_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_802_1x_updated.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_auto_gateway_initscripts.yml b/tests/tests_auto_gateway_initscripts.yml index d02090a..273fb63 100644 --- a/tests/tests_auto_gateway_initscripts.yml +++ b/tests/tests_auto_gateway_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_auto_gateway.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_auto_gateway_nm.yml b/tests/tests_auto_gateway_nm.yml index ed25386..39b629e 100644 --- a/tests/tests_auto_gateway_nm.yml +++ b/tests/tests_auto_gateway_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_auto_gateway.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_cloned_mac_initscripts.yml b/tests/tests_bond_cloned_mac_initscripts.yml index 1ccde52..d464ed2 100644 --- a/tests/tests_bond_cloned_mac_initscripts.yml +++ b/tests/tests_bond_cloned_mac_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_cloned_mac.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_cloned_mac_nm.yml b/tests/tests_bond_cloned_mac_nm.yml index b70fab7..d21c68d 100644 --- a/tests/tests_bond_cloned_mac_nm.yml +++ b/tests/tests_bond_cloned_mac_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_cloned_mac.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_deprecated_initscripts.yml b/tests/tests_bond_deprecated_initscripts.yml index b51e9a8..9d052a2 100644 --- a/tests/tests_bond_deprecated_initscripts.yml +++ b/tests/tests_bond_deprecated_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_deprecated.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_deprecated_nm.yml b/tests/tests_bond_deprecated_nm.yml index b45c624..28922b4 100644 --- a/tests/tests_bond_deprecated_nm.yml +++ b/tests/tests_bond_deprecated_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_deprecated.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_initscripts.yml b/tests/tests_bond_initscripts.yml index f5bf069..86b2a74 100644 --- a/tests/tests_bond_initscripts.yml +++ b/tests/tests_bond_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_nm.yml b/tests/tests_bond_nm.yml index 9bb16f7..2574150 100644 --- a/tests/tests_bond_nm.yml +++ b/tests/tests_bond_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_options_nm.yml b/tests/tests_bond_options_nm.yml index e3a0648..e215190 100644 --- a/tests/tests_bond_options_nm.yml +++ b/tests/tests_bond_options_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_options.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_removal_initscripts.yml b/tests/tests_bond_removal_initscripts.yml index e768cc0..bed7dee 100644 --- a/tests/tests_bond_removal_initscripts.yml +++ b/tests/tests_bond_removal_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_removal.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bond_removal_nm.yml b/tests/tests_bond_removal_nm.yml index 1d96143..f4bf1d1 100644 --- a/tests/tests_bond_removal_nm.yml +++ b/tests/tests_bond_removal_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bond_removal.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bridge_cloned_mac_initscripts.yml b/tests/tests_bridge_cloned_mac_initscripts.yml index bb80097..7920330 100644 --- a/tests/tests_bridge_cloned_mac_initscripts.yml +++ b/tests/tests_bridge_cloned_mac_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bridge_cloned_mac.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bridge_cloned_mac_nm.yml b/tests/tests_bridge_cloned_mac_nm.yml index 6377a74..40c7dfd 100644 --- a/tests/tests_bridge_cloned_mac_nm.yml +++ b/tests/tests_bridge_cloned_mac_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bridge_cloned_mac.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bridge_initscripts.yml b/tests/tests_bridge_initscripts.yml index 88e4b28..6e5cef3 100644 --- a/tests/tests_bridge_initscripts.yml +++ b/tests/tests_bridge_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bridge.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_bridge_nm.yml b/tests/tests_bridge_nm.yml index 744461d..a16e92e 100644 --- a/tests/tests_bridge_nm.yml +++ b/tests/tests_bridge_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_bridge.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_dummy_nm.yml b/tests/tests_dummy_nm.yml index c3624b8..c67780e 100644 --- a/tests/tests_dummy_nm.yml +++ b/tests/tests_dummy_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_dummy.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_eth_dns_support_nm.yml b/tests/tests_eth_dns_support_nm.yml index c0e5fae..eae3a64 100644 --- a/tests/tests_eth_dns_support_nm.yml +++ b/tests/tests_eth_dns_support_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_eth_dns_support.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_eth_pci_address_match_nm.yml b/tests/tests_eth_pci_address_match_nm.yml index 52f68d7..2396f26 100644 --- a/tests/tests_eth_pci_address_match_nm.yml +++ b/tests/tests_eth_pci_address_match_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_eth_pci_address_match.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethernet_initscripts.yml b/tests/tests_ethernet_initscripts.yml index d3b2078..bbd4880 100644 --- a/tests/tests_ethernet_initscripts.yml +++ b/tests/tests_ethernet_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethernet.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethernet_nm.yml b/tests/tests_ethernet_nm.yml index 478cf7f..86b51fd 100644 --- a/tests/tests_ethernet_nm.yml +++ b/tests/tests_ethernet_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethernet.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_coalesce_initscripts.yml b/tests/tests_ethtool_coalesce_initscripts.yml index 30a7a99..3e5aff8 100644 --- a/tests/tests_ethtool_coalesce_initscripts.yml +++ b/tests/tests_ethtool_coalesce_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_coalesce.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_coalesce_nm.yml b/tests/tests_ethtool_coalesce_nm.yml index 230a348..26e7beb 100644 --- a/tests/tests_ethtool_coalesce_nm.yml +++ b/tests/tests_ethtool_coalesce_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_coalesce.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_features_initscripts.yml b/tests/tests_ethtool_features_initscripts.yml index d8c9684..d441dbf 100644 --- a/tests/tests_ethtool_features_initscripts.yml +++ b/tests/tests_ethtool_features_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_features.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_features_nm.yml b/tests/tests_ethtool_features_nm.yml index cf70131..49a8585 100644 --- a/tests/tests_ethtool_features_nm.yml +++ b/tests/tests_ethtool_features_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_features.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_ring_initscripts.yml b/tests/tests_ethtool_ring_initscripts.yml index 3479143..92b35b9 100644 --- a/tests/tests_ethtool_ring_initscripts.yml +++ b/tests/tests_ethtool_ring_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_ring.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ethtool_ring_nm.yml b/tests/tests_ethtool_ring_nm.yml index bf0c397..bbc70fd 100644 --- a/tests/tests_ethtool_ring_nm.yml +++ b/tests/tests_ethtool_ring_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ethtool_ring.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_infiniband_nm.yml b/tests/tests_infiniband_nm.yml index cc5317f..0907414 100644 --- a/tests/tests_infiniband_nm.yml +++ b/tests/tests_infiniband_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_infiniband.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ipv6_disabled_nm.yml b/tests/tests_ipv6_disabled_nm.yml index bb8452d..b222b69 100644 --- a/tests/tests_ipv6_disabled_nm.yml +++ b/tests/tests_ipv6_disabled_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ipv6_disabled.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ipv6_dns_search_nm.yml b/tests/tests_ipv6_dns_search_nm.yml index bc0d1c5..983ff57 100644 --- a/tests/tests_ipv6_dns_search_nm.yml +++ b/tests/tests_ipv6_dns_search_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ipv6_dns_search.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ipv6_initscripts.yml b/tests/tests_ipv6_initscripts.yml index a41c043..13e71b9 100644 --- a/tests/tests_ipv6_initscripts.yml +++ b/tests/tests_ipv6_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ipv6.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_ipv6_nm.yml b/tests/tests_ipv6_nm.yml index 3f53734..bbff13e 100644 --- a/tests/tests_ipv6_nm.yml +++ b/tests/tests_ipv6_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_ipv6.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_network_state_nm.yml b/tests/tests_network_state_nm.yml index 47d54dc..bb6b302 100644 --- a/tests/tests_network_state_nm.yml +++ b/tests/tests_network_state_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_network_state.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_provider_nm.yml b/tests/tests_provider_nm.yml index c5dbe2e..230b75c 100644 --- a/tests/tests_provider_nm.yml +++ b/tests/tests_provider_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_provider.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_reapply_nm.yml b/tests/tests_reapply_nm.yml index 6493f83..51fd51e 100644 --- a/tests/tests_reapply_nm.yml +++ b/tests/tests_reapply_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_reapply.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_route_device_initscripts.yml b/tests/tests_route_device_initscripts.yml index e474dc9..9a7df39 100644 --- a/tests/tests_route_device_initscripts.yml +++ b/tests/tests_route_device_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_route_device.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_route_device_nm.yml b/tests/tests_route_device_nm.yml index 69d7b3b..029adfa 100644 --- a/tests/tests_route_device_nm.yml +++ b/tests/tests_route_device_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_route_device.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_route_table_nm.yml b/tests/tests_route_table_nm.yml index f7fe26d..915ae1f 100644 --- a/tests/tests_route_table_nm.yml +++ b/tests/tests_route_table_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_route_table.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_routing_rules_nm.yml b/tests/tests_routing_rules_nm.yml index 6083c9f..56639c3 100644 --- a/tests/tests_routing_rules_nm.yml +++ b/tests/tests_routing_rules_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_routing_rules.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_states_initscripts.yml b/tests/tests_states_initscripts.yml index def4dbd..748d8d4 100644 --- a/tests/tests_states_initscripts.yml +++ b/tests/tests_states_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_states.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_states_nm.yml b/tests/tests_states_nm.yml index db1b78c..7ca84bc 100644 --- a/tests/tests_states_nm.yml +++ b/tests/tests_states_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_states.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_team_nm.yml b/tests/tests_team_nm.yml index 82b0ab2..e2e14b0 100644 --- a/tests/tests_team_nm.yml +++ b/tests/tests_team_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_team.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_team_plugin_installation_nm.yml b/tests/tests_team_plugin_installation_nm.yml index ce21f79..a0c7eec 100644 --- a/tests/tests_team_plugin_installation_nm.yml +++ b/tests/tests_team_plugin_installation_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_team_plugin_installation.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_vlan_mtu_initscripts.yml b/tests/tests_vlan_mtu_initscripts.yml index fda6c79..5a4719e 100644 --- a/tests/tests_vlan_mtu_initscripts.yml +++ b/tests/tests_vlan_mtu_initscripts.yml @@ -2,6 +2,7 @@ # This file was generated by ensure_provider_tests.py --- - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_vlan_mtu.yml' with initscripts as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_vlan_mtu_nm.yml b/tests/tests_vlan_mtu_nm.yml index 81491cc..26251d1 100644 --- a/tests/tests_vlan_mtu_nm.yml +++ b/tests/tests_vlan_mtu_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_vlan_mtu.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_wireless_nm.yml b/tests/tests_wireless_nm.yml index 1e951e6..58cd8cd 100644 --- a/tests/tests_wireless_nm.yml +++ b/tests/tests_wireless_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_wireless.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_wireless_plugin_installation_nm.yml b/tests/tests_wireless_plugin_installation_nm.yml index f698978..b9e0a2f 100644 --- a/tests/tests_wireless_plugin_installation_nm.yml +++ b/tests/tests_wireless_plugin_installation_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_wireless_plugin_installation.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_wireless_wpa3_owe_nm.yml b/tests/tests_wireless_wpa3_owe_nm.yml index 6773143..a928cc6 100644 --- a/tests/tests_wireless_wpa3_owe_nm.yml +++ b/tests/tests_wireless_wpa3_owe_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_wireless_wpa3_owe.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml' diff --git a/tests/tests_wireless_wpa3_sae_nm.yml b/tests/tests_wireless_wpa3_sae_nm.yml index 52a72c8..6804127 100644 --- a/tests/tests_wireless_wpa3_sae_nm.yml +++ b/tests/tests_wireless_wpa3_sae_nm.yml @@ -3,6 +3,7 @@ --- # set network provider and gather facts - hosts: all + # yamllint disable rule:line-length name: Run playbook 'playbooks/tests_wireless_wpa3_sae.yml' with nm as provider tasks: - name: Include the task 'el_repo_setup.yml'