aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-05-09 17:26:33 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-09 17:26:33 +0000
commit1fc80d52c05b773bf9d1b1004d53c8e6ab36b655 (patch)
treecddba8a32ae3a6c1f3fc19c26b92a2583b0b1e2a /functest
parent6e43ec79cd567da62835483277a51e68e1a82fec (diff)
parentcbdf115d7ed8cfe32017fe905dccc473d727bf30 (diff)
Merge "Bugfix: initialize the logger for snaps"
Diffstat (limited to 'functest')
-rw-r--r--functest/core/pytest_suite_runner.py1
-rw-r--r--functest/opnfv_tests/openstack/snaps/snaps_test_runner.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/functest/core/pytest_suite_runner.py b/functest/core/pytest_suite_runner.py
index 8b5da05ef..21edc1874 100644
--- a/functest/core/pytest_suite_runner.py
+++ b/functest/core/pytest_suite_runner.py
@@ -18,6 +18,7 @@ class PyTestSuiteRunner(base.TestCase):
def __init__(self, **kwargs):
super(PyTestSuiteRunner, self).__init__(**kwargs)
self.suite = None
+ self.logger = None
def run(self, **kwargs):
"""
diff --git a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
index 8a68cad9e..2a1b3a39b 100644
--- a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
+++ b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py
@@ -5,6 +5,8 @@
#
# http://www.apache.org/licenses/LICENSE-2.0
+import logging
+
from functest.core.pytest_suite_runner import PyTestSuiteRunner
from functest.opnfv_tests.openstack.snaps import snaps_utils
from functest.utils import functest_utils
@@ -22,6 +24,7 @@ class SnapsTestRunner(PyTestSuiteRunner):
"""
def __init__(self, **kwargs):
super(SnapsTestRunner, self).__init__(**kwargs)
+ self.logger = logging.getLogger(__name__)
self.os_creds = openstack_tests.get_credentials(
os_env_file=CONST.__getattribute__('openstack_creds'),