From 4f92ed15f588d6c0cab4b30a2182e92a9329d2fb Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 13 Feb 2024 17:49:20 +0100 Subject: [PATCH] tests: set ANSIBLE_COLLECTIONS_PATH for rbdmirror scenario This is missing so the job fails. Typical error: ``` ERROR! couldn't resolve module/action 'community.general.dnf_config_manager'. ``` Signed-off-by: Guillaume Abrioux --- tox-rbdmirror.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox-rbdmirror.ini b/tox-rbdmirror.ini index 84328a710..ddb22b0df 100644 --- a/tox-rbdmirror.ini +++ b/tox-rbdmirror.ini @@ -16,6 +16,7 @@ setenv= ANSIBLE_CALLBACK_WHITELIST = profile_tasks ANSIBLE_CACHE_PLUGIN = memory ANSIBLE_GATHERING = implicit + ANSIBLE_COLLECTIONS_PATH = {envdir}/ansible_collections # only available for ansible >= 2.5 ANSIBLE_KEEP_REMOTE_FILES = 1 ANSIBLE_STDOUT_CALLBACK = yaml -- 2.39.5