Skip to content

Commit 73f0a27

Browse files
amolpati30web-flow
authored andcommitted
SAT-20386 Jira card is closed; removing it. (#20839)
(cherry picked from commit 1e9d8e4)
1 parent e1ed6a4 commit 73f0a27

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

tests/foreman/api/test_provisioning.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,16 @@ def test_rhel_pxe_provisioning_fips_enabled(
527527
528528
:Verifies: SAT-26071
529529
"""
530+
# Skip RHEL7 UEFI test due to known issue SAT-41340
531+
if (
532+
is_open('SAT-41340')
533+
and pxe_loader.vm_firmware in ['uefi']
534+
and module_provisioning_rhel_content.os.major == '7'
535+
):
536+
pytest.skip(
537+
f"Test not supported for rhel{module_provisioning_rhel_content.os.major} {pxe_loader.vm_firmware} firmware"
538+
)
539+
530540
sat = module_provisioning_sat.sat
531541
host_mac_addr = provisioning_host.provisioning_nic_mac_addr
532542
# Verify password hashing algorithm SHA512 is set in OS used for provisioning
@@ -602,7 +612,7 @@ def test_rhel_pxe_provisioning_fips_enabled(
602612

603613
# Verify FIPS is enabled on host after provisioning is completed successfully
604614
result = provisioning_host.execute('cat /proc/sys/crypto/fips_enabled')
605-
assert (0 if is_open('SAT-20386') else 1) == int(result.stdout)
615+
assert int(result.stdout) == 1
606616

607617
# Run a command on the host using REX to verify that Satellite's SSH key is present on the host
608618
# Add workaround for SAT-32007 and SAT-32006

0 commit comments

Comments
 (0)