mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
* Cut tests containers * Cut unused flatten versions * Fix installation of mysqlclient on Ubuntu * Cut unused variables * Fix package missing on Unbuntu 22.04 * Fix variable templating * Fix test for ansible 2.17 and do remove the ignore_errors ignore_errors is bad because it makes searching for real errors difficult.
21 lines
751 B
YAML
21 lines
751 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: "{{ role_name }} | Main | Prepare the fake root folder"
|
|
ansible.builtin.import_tasks:
|
|
file: fake_root.yml
|
|
|
|
- name: "{{ role_name }} | Main | Set variables"
|
|
ansible.builtin.import_tasks:
|
|
file: setvars.yml
|
|
|
|
- name: "{{ role_name }} | Main | Install requirements"
|
|
ansible.builtin.import_tasks:
|
|
file: requirements.yml
|
|
|
|
- name: "{{ role_name }} | Main | Verify all components version under test"
|
|
ansible.builtin.import_tasks:
|
|
file: verify.yml
|