Disable a test for idempotency that fails on MySQL 8+ and MariaDB 10.5+

This commit is contained in:
Laurent Indermuehle 2023-03-28 11:35:06 +02:00
parent 51b103e992
commit bbc8ccc00f
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -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 }}"