Skip to content

Commit

Permalink
test: skip integration pytest on fedora 39 and later
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
richm committed Aug 15, 2024
1 parent 5082921 commit 931cdb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/tests_integration_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 931cdb3

Please sign in to comment.