Merge "Switch to tempest.common.utils.requires_ext"

This commit is contained in:
Zuul 2018-02-22 21:28:18 +00:00 committed by Gerrit Code Review
commit c196274d85
3 changed files with 2 additions and 4 deletions

View File

@ -20,7 +20,6 @@ from tempest.api.compute import base
from tempest.common import waiters
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest import test
CONF = config.CONF

View File

@ -16,11 +16,11 @@
import json
from tempest.common import utils
from tempest import config
from tempest import exceptions
from tempest.lib.common.utils import test_utils
from tempest.lib import decorators
from tempest import test
from nova_lxd_tempest_plugin.tests.scenario import manager
@ -107,7 +107,7 @@ class TestServerBasicOps(manager.ScenarioTest):
@decorators.idempotent_id('7fff3fb3-91d8-4fd0-bd7d-0204f1f180ba')
@decorators.attr(type='smoke')
@test.services('compute', 'network')
@utils.services('compute', 'network')
def test_server_basic_ops(self):
keypair = self.create_keypair()
self.security_group = self._create_security_group()

View File

@ -26,7 +26,6 @@ from tempest.lib.common.utils import data_utils
from tempest.lib.common.utils import test_utils
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test
from nova_lxd_tempest_plugin.tests.scenario import manager