mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-28 07:31:24 -07:00
This way we can split db_engine and db_version and simplify tests. Also this is mandatory to use the matrix.db_engine_version as the image name for our services containers.
26 lines
977 B
YAML
26 lines
977 B
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright: (c) 2019, Andrew Klychkov (@Andersson007) <aaklychkov@mail.ru>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# Initial CI tests of mysql_replication module:
|
|
- import_tasks: mysql_replication_initial.yml
|
|
|
|
# Tests of replication filters and force_context
|
|
- include: issue-265.yml
|
|
|
|
# Tests of primary_delay parameter:
|
|
- import_tasks: mysql_replication_primary_delay.yml
|
|
|
|
# Tests of channel parameter:
|
|
- import_tasks: mysql_replication_channel.yml
|
|
when:
|
|
- db_engine == 'mysql' # FIXME: mariadb introduces FOR CHANNEL in 10.7
|
|
|
|
# Tests of resetprimary mode:
|
|
- import_tasks: mysql_replication_resetprimary_mode.yml
|
|
|
|
- include: issue-28.yml
|