From 48537a05594cbff1231446afe4a8043a878ac948 Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Mon, 13 Nov 2023 07:59:10 +0100 Subject: [PATCH] Only 8 now, 6 & 7 with Fedora have an issue. --- templates/tox.ini.j2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/tox.ini.j2 b/templates/tox.ini.j2 index 6fb3198..6f3419a 100644 --- a/templates/tox.ini.j2 +++ b/templates/tox.ini.j2 @@ -4,7 +4,10 @@ minversion = 4.2.4 {% if tox_ansible_versions is defined %} envlist = py3-ansible{% raw %}{{% endraw %}{% for version in tox_ansible_versions %}{{ version }}{% if not loop.last %},{% endif %}{% endfor %}{% raw %}}{% endraw %} {% else %} -envlist = py3-ansible{6,7,8} +# Ansible 6 and 7 are disabled, causing issues with Fedora: +# https://github.com/ansible/ansible/issues/81199#event-9773321055 +# envlist = py3-ansible{6,7,8} +envlist = py3-ansible{8} {% endif %} skipsdist = true