Skip to content

Commit

Permalink
VMware api e2e provisioning test
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Ganar <shubhamsg123m@gmail.com>
  • Loading branch information
shubhamsg199 committed Jun 28, 2024
1 parent bebe2f1 commit eb8509d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/foreman/api/test_computeresource_vmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@pytest.mark.parametrize('vmware', ['vmware7', 'vmware8'], indirect=True)
@pytest.mark.parametrize('pxe_loader', ['bios', 'uefi'], indirect=True)
@pytest.mark.parametrize('provision_method', ['build', 'bootdisk'])
@pytest.mark.rhel_ver_match('[9]')
@pytest.mark.rhel_ver_match('[8]')
def test_positive_provision_end_to_end(
request,
setting_update,
Expand Down Expand Up @@ -56,6 +56,10 @@ def test_positive_provision_end_to_end(
:CaseImportance: Critical
:Verifies: SAT-23417
:customerscenario: true
:BZ: 2186114
"""
sat = module_provisioning_sat.sat
Expand All @@ -70,7 +74,8 @@ def test_positive_provision_end_to_end(
compute_attributes={
'path': '/Datacenters/SatQE-Datacenter/vm/',
'cpus': 2,
'memoy_mb': 6000,
'memory_mb': 6000,
'firmware': 'bios' if pxe_loader.vm_firmware == 'bios' else 'efi',
'cluster': f'{settings.vmware.cluster}',
'start': '1',
'guest_id': 'rhel8_64Guest',
Expand Down

0 comments on commit eb8509d

Please sign in to comment.