Merge "Obtain a token right before API test execution" into mcp/pike
diff --git a/heat_tempest_plugin/tests/functional/test_event_sinks.py b/heat_tempest_plugin/tests/functional/test_event_sinks.py
index 7cb1d7b..dade28c 100644
--- a/heat_tempest_plugin/tests/functional/test_event_sinks.py
+++ b/heat_tempest_plugin/tests/functional/test_event_sinks.py
@@ -17,6 +17,7 @@
 
 from heat_tempest_plugin.common import test
 from heat_tempest_plugin.tests.functional import functional_base
+from tempest.common import utils
 
 
 class ZaqarEventSinkTest(functional_base.FunctionalTestsBase):
@@ -30,6 +31,7 @@
 '''
 
     @decorators.idempotent_id('d0b72695-e97d-4aa1-bfaf-31c14b09ac87')
+    @utils.services('zaqar')
     def test_events(self):
         queue_id = str(uuid.uuid4())
         environment = {'event_sinks': [{'type': 'zaqar-queue',
diff --git a/heat_tempest_plugin/tests/functional/test_software_config.py b/heat_tempest_plugin/tests/functional/test_software_config.py
index f034096..f82e5b3 100644
--- a/heat_tempest_plugin/tests/functional/test_software_config.py
+++ b/heat_tempest_plugin/tests/functional/test_software_config.py
@@ -25,6 +25,7 @@
 from heat_tempest_plugin.common import exceptions
 from heat_tempest_plugin.common import test
 from heat_tempest_plugin.tests.functional import functional_base
+from tempest.common import utils
 
 
 class ParallelDeploymentsTest(functional_base.FunctionalTestsBase):
@@ -230,6 +231,7 @@
     '''
 
     @decorators.idempotent_id('3af97ced-bead-4629-b78a-97762719e990')
+    @utils.services('zaqar')
     def test_signal_queues(self):
         parms = {'flavor': self.conf.minimal_instance_type,
                  'network': self.conf.fixed_network_name,
diff --git a/heat_tempest_plugin/tests/functional/test_waitcondition.py b/heat_tempest_plugin/tests/functional/test_waitcondition.py
index b50c0a2..65a971f 100644
--- a/heat_tempest_plugin/tests/functional/test_waitcondition.py
+++ b/heat_tempest_plugin/tests/functional/test_waitcondition.py
@@ -17,6 +17,7 @@
 from zaqarclient.queues.v2 import client as zaqarclient
 
 from heat_tempest_plugin.tests.functional import functional_base
+from tempest.common import utils
 
 
 class ZaqarWaitConditionTest(functional_base.FunctionalTestsBase):
@@ -40,6 +41,7 @@
 '''
 
     @decorators.idempotent_id('90183f0d-9929-43a6-8fb6-b81003824c6d')
+    @utils.services('zaqar')
     def test_signal_queues(self):
         stack_identifier = self.stack_create(
             template=self.template,