Skip to content

Commit 931cdb3

Browse files
committed
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 <[email protected]>
1 parent 5082921 commit 931cdb3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/tests_integration_pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@
1010
import_playbook: playbooks/integration_pytest_python3.yml
1111
when: (ansible_distribution in ["CentOS", "RedHat"] and
1212
ansible_distribution_major_version == "8") or
13-
ansible_distribution == "Fedora"
13+
(ansible_distribution == "Fedora" and
14+
ansible_distribution_major_version | int < 39)

0 commit comments

Comments
 (0)