diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-01-29 13:46:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-29 13:46:50 +0000 |
commit | 0f31a0dca579840145a3bcbbfff070ae4ae95115 (patch) | |
tree | ced977b982d8fac940a017cf54c6bc5ddcbe76aa /functest/opnfv_tests/openstack/snaps/smoke.py | |
parent | 630a31629bffd6d881faf2e3ea3a849b4143c103 (diff) | |
parent | 52da4424869eecd428c29a41f1699e6e00767055 (diff) |
Merge "Fix warnings in all snaps-related modules"
Diffstat (limited to 'functest/opnfv_tests/openstack/snaps/smoke.py')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/smoke.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/smoke.py b/functest/opnfv_tests/openstack/snaps/smoke.py index ded149d0..ef6e5dc9 100644 --- a/functest/opnfv_tests/openstack/snaps/smoke.py +++ b/functest/opnfv_tests/openstack/snaps/smoke.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + # Copyright (c) 2017 Cable Television Laboratories, Inc. and others. # # This program and the accompanying materials @@ -6,6 +8,8 @@ # # http://www.apache.org/licenses/LICENSE-2.0 +# pylint: disable=missing-docstring + import unittest from functest.opnfv_tests.openstack.snaps import snaps_suite_builder @@ -41,4 +45,4 @@ class SnapsSmoke(SnapsTestRunner): image_metadata=self.image_metadata, use_floating_ips=self.use_fip, netconf_override=self.netconf_override) - return super(self.__class__, self).run() + return super(SnapsSmoke, self).run() |