mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-18 17:05:13 +00:00
The main playbook executes integration/test_ethernet.py with pytest, adapting the installation for different distributions. Signed-off-by: Elvira García Ruiz <elviragr@riseup.net>
9 lines
306 B
YAML
9 lines
306 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Empty play to gather facts
|
|
hosts: all
|
|
|
|
- import_playbook: playbooks/integration_pytest_python3.yml
|
|
when: (ansible_distribution in ["CentOS", "RedHat"] and
|
|
ansible_distribution_major_version == "8") or
|
|
ansible_distribution == "Fedora"
|