From edfcc892297a652fecfb8a8e34a6be5d84183946 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Wed, 24 Aug 2022 13:34:18 +0200 Subject: [PATCH] Add missing includes --- tests/integration/targets/test_mysql_user/tasks/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/integration/targets/test_mysql_user/tasks/main.yml b/tests/integration/targets/test_mysql_user/tasks/main.yml index 6a2003a..1df84de 100644 --- a/tests/integration/targets/test_mysql_user/tasks/main.yml +++ b/tests/integration/targets/test_mysql_user/tasks/main.yml @@ -274,6 +274,11 @@ - include: test_priv_append.yml enable_check_mode=no - include: test_priv_append.yml enable_check_mode=yes + # Test that subtract_privs will only revoke the grants given by priv + # (https://github.com/ansible-collections/community.mysql/issues/331) + - include: test_priv_subtract.yml enable_check_mode=no + - include: test_priv_subtract.yml enable_check_mode=yes + # Tests for the TLS requires dictionary - include: tls_requirements.yml @@ -285,5 +290,9 @@ tags: - issue-64560 + # Test that mysql_user still works with force_context enabled (database set to "mysql") + # (https://github.com/ansible-collections/community.mysql/issues/265) + - include: issue-265.yml + # https://github.com/ansible-collections/community.mysql/issues/231 - include: test_user_grants_with_roles_applied.yml