diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-05-08 06:33:13 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-05-09 02:15:25 +0000 |
commit | cbdf115d7ed8cfe32017fe905dccc473d727bf30 (patch) | |
tree | 07f4cac55f3c9ef3a4cac7f21daece3c77519aa0 /functest/opnfv_tests/openstack/snaps | |
parent | 1d5e199517ff09d959a1240f3b4e715be799058b (diff) |
Bugfix: initialize the logger for snaps
Testcases about snaps failed due to the absence of attribute 'logger'.
Change-Id: I78c85e51f63afa767fa73aa12faea066ad432371
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/snaps_test_runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py index 8a68cad9..2a1b3a39 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'), |