Skip to content

Commit 421bec3

Browse files
committed
SAT-20386 Jira card is closed; removing it.
1 parent a5e7b17 commit 421bec3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tests/foreman/api/test_provisioning.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,10 @@ def test_rhel_pxe_provisioning_fips_enabled(
498498
499499
:Verifies: SAT-26071
500500
"""
501+
# Skip test for UEFI and SecureBoot loaders
502+
if is_open('SAT-41340') and pxe_loader.vm_firmware in ['uefi'] and module_provisioning_rhel_content.os.major == 7:
503+
pytest.skip(f"Test not supported for rhel{module_provisioning_rhel_content.os.major} {pxe_loader.vm_firmware} firmware")
504+
501505
sat = module_provisioning_sat.sat
502506
host_mac_addr = provisioning_host.provisioning_nic_mac_addr
503507
# Verify password hashing algorithm SHA512 is set in OS used for provisioning
@@ -573,7 +577,7 @@ def test_rhel_pxe_provisioning_fips_enabled(
573577

574578
# Verify FIPS is enabled on host after provisioning is completed successfully
575579
result = provisioning_host.execute('cat /proc/sys/crypto/fips_enabled')
576-
assert (0 if is_open('SAT-20386') else 1) == int(result.stdout)
580+
assert int(result.stdout) == 1
577581

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

0 commit comments

Comments
 (0)