Skip to content

Commit

Permalink
test_no_avc_denials: skip on centos 9 due to RHEL-24346
Browse files Browse the repository at this point in the history
  • Loading branch information
croissanne committed Apr 16, 2024
1 parent f351d49 commit 4b66824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_suite/generic/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ def test_no_avc_denials(self, host, instance_data):
"""
Check there is no avc denials (selinux).
"""
if host.system_info.distribution == 'rhel' and \
float(host.system_info.release) == 9.4:
if (host.system_info.distribution == 'rhel' and float(host.system_info.release) == 9.4) \
or (host.system_info.distribution == 'centos' and host.system_info.release == "9"):
pytest.skip('RHEL-24346: Skipping on RHEL-9.4 due to a known issue with NetworkManager.')

# CLOUDX-320: This "if" is pending to be removed
Expand Down

0 comments on commit 4b66824

Please sign in to comment.