summaryrefslogtreecommitdiffstats
path: root/snaps/openstack/utils/tests/heat_utils_tests.py
diff options
context:
space:
mode:
authorspisarski <s.pisarski@cablelabs.com>2018-03-12 10:22:01 -0600
committerspisarski <s.pisarski@cablelabs.com>2018-03-12 10:22:01 -0600
commit632b72619852cc9f321099a524c3478c0b2afa08 (patch)
tree57f0cf4436a1054d6cb3b5fce7a8070506952006 /snaps/openstack/utils/tests/heat_utils_tests.py
parent9e9e09590cce321f55996c1a31370ffdf28251b0 (diff)
Added support for running tests in parallel.
JIRA: SNAPS-215 Change-Id: I94923a9f184b0d370159b499919e8fc20a2fef90 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
Diffstat (limited to 'snaps/openstack/utils/tests/heat_utils_tests.py')
-rw-r--r--snaps/openstack/utils/tests/heat_utils_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/snaps/openstack/utils/tests/heat_utils_tests.py b/snaps/openstack/utils/tests/heat_utils_tests.py
index 081736a..53ac3dd 100644
--- a/snaps/openstack/utils/tests/heat_utils_tests.py
+++ b/snaps/openstack/utils/tests/heat_utils_tests.py
@@ -52,7 +52,7 @@ class HeatSmokeTests(OSComponentTestCase):
# This should not throw an exception
stacks = heat.stacks.list()
for stack in stacks:
- print stack
+ logger.info('Stack - %s', stack)
def test_heat_connect_fail(self):
"""
@@ -70,7 +70,7 @@ class HeatSmokeTests(OSComponentTestCase):
# This should throw an exception
with self.assertRaises(Exception):
for stack in stacks:
- print stack
+ logger.info('Stack - %s', stack)
class HeatUtilsCreateSimpleStackTests(OSComponentTestCase):