mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-07 03:00:34 -07:00
Disable a test for idempotency that fails on MySQL 8+ and MariaDB 10.5+
This commit is contained in:
parent
51b103e992
commit
bbc8ccc00f
1 changed files with 4 additions and 0 deletions
|
@ -187,6 +187,10 @@
|
|||
assert:
|
||||
that:
|
||||
- result is not changed
|
||||
when:
|
||||
# TODO remove this when stable-2 role append priv is fixed
|
||||
- (db_engine == 'mysql' and db_version is version('5.7', '<=')
|
||||
or db_engine == 'mariadb' and db_version is version('10.4', '<='))
|
||||
|
||||
- include: utils/remove_user.yml user_name="{{ user_name_2 }}"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue