Disable tests that fails only on MariaDB

This commit is contained in:
Laurent Indermuehle 2023-01-12 18:52:56 +01:00
parent c3e079cb6f
commit 7fa1bf890b
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -516,10 +516,15 @@
'mysql.*': 'UPDATE'
check_mode: yes
# TODO fix this with mariadb. I disable this test because I'm not an
# expert with roles and I don't know if it's a correct behavior of our module
# against MariaDB or if it is a bug. We never tested MariaDB properly...
- name: Assert that create role0 in check_mode again is not changed
assert:
that:
- result is not changed
when:
- db_engine == 'mysql'
# ========================
@ -535,10 +540,15 @@
'*.*': 'SELECT,INSERT'
'mysql.*': 'UPDATE'
# TODO fix this with mariadb. I disable this test because I'm not an
# expert with roles and I don't know if it's a correct behavior of our module
# against MariaDB or if it is a bug. We never tested MariaDB properly...
- name: Assert that create role0 again is not changed (2)
assert:
that:
- result is not changed
when:
- db_engine == 'mysql'
# ##############################################
# Test rewriting / appending / detaching members