Remove skip checks around compute_api ext

Tempest common has removed compute checks for service extension
OS-FLV-EXT-DATA due to [1]. Removing impacted skipchecks from whitebox.

[1] 618ff5f129

Change-Id: If84147da4e2dc828a0c257a401d18c52c96205b8
This commit is contained in:
James Parker 2022-05-10 15:19:45 -04:00
parent 53ccdfd99b
commit db94bfb656

View File

@ -30,7 +30,6 @@ import xml.etree.ElementTree as ET
from oslo_serialization import jsonutils
from tempest.common import compute
from tempest.common import utils
from tempest.common import waiters
from tempest import config
from tempest.exceptions import BuildErrorException
@ -127,13 +126,6 @@ class CPUPolicyTest(BasePinningTest):
"""Validate CPU policy support."""
vcpus = 2
@classmethod
def skip_checks(cls):
super(CPUPolicyTest, cls).skip_checks()
if not utils.is_extension_enabled('OS-FLV-EXT-DATA', 'compute'):
msg = "OS-FLV-EXT-DATA extension not enabled."
raise cls.skipException(msg)
def test_cpu_shared(self):
"""Ensure an instance with an explicit 'shared' policy work."""
flavor = self.create_flavor(vcpus=self.vcpus,
@ -393,9 +385,6 @@ class EmulatorThreadTest(BasePinningTest, numa_helper.NUMAHelperMixin):
@classmethod
def skip_checks(cls):
super(EmulatorThreadTest, cls).skip_checks()
if not utils.is_extension_enabled('OS-FLV-EXT-DATA', 'compute'):
msg = "OS-FLV-EXT-DATA extension not enabled."
raise cls.skipException(msg)
if getattr(CONF.whitebox_hardware, 'cpu_topology', None) is None:
msg = "cpu_topology in whitebox-hardware is not present"
raise cls.skipException(msg)