From 931cdb335dad9178352a456067efe6d069df7a03 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 14 Aug 2024 16:26:56 -0600 Subject: [PATCH] test: skip integration pytest on fedora 39 and later Something has changed in python, similar to the change between el8 and el9, that causes the test to fail on f39 and later, so skip it. Signed-off-by: Rich Megginson --- tests/tests_integration_pytest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_integration_pytest.yml b/tests/tests_integration_pytest.yml index c26f65be..b9db4007 100644 --- a/tests/tests_integration_pytest.yml +++ b/tests/tests_integration_pytest.yml @@ -10,4 +10,5 @@ import_playbook: playbooks/integration_pytest_python3.yml when: (ansible_distribution in ["CentOS", "RedHat"] and ansible_distribution_major_version == "8") or - ansible_distribution == "Fedora" + (ansible_distribution == "Fedora" and + ansible_distribution_major_version | int < 39)