Fix multiple pep8 errors

Change-Id: If6275092692f8f42a6626ef74307e40aca4b6d0e
This commit is contained in:
Victor Ryzhenkin 2016-07-14 15:24:40 +03:00
parent 9a5e2eb194
commit b1d713ed70
4 changed files with 8 additions and 9 deletions

View File

@ -17,10 +17,9 @@ import abc
from fuelweb_test.tests import base_test_case from fuelweb_test.tests import base_test_case
import six import six
from stacklight_tests.helpers import checkers from murano_plugin_tests.helpers import checkers
from stacklight_tests.helpers import helpers from murano_plugin_tests.helpers import helpers
from stacklight_tests.helpers import remote_ops from murano_plugin_tests.helpers import remote_ops
from stacklight_tests.helpers import ui_tester
@six.add_metaclass(abc.ABCMeta) @six.add_metaclass(abc.ABCMeta)
@ -79,4 +78,3 @@ class PluginApi(object):
"""Enable and configure the plugin in the environment. """Enable and configure the plugin in the environment.
""" """
pass pass

View File

@ -13,9 +13,10 @@
# under the License. # under the License.
from fuelweb_test.helpers.decorators import log_snapshot_after_test from fuelweb_test.helpers.decorators import log_snapshot_after_test
from murano_plugin_tests.murano_plugin import api
from plugin_settings import base_nodes from plugin_settings import base_nodes
from proboscis import test from proboscis import test
from murano_plugin_tests.murano_plugin import api
@test(groups=["plugins"]) @test(groups=["plugins"])
@ -55,4 +56,4 @@ class TestMuranoPluginBvt(api.MuranoPluginApi):
self.run_ostf() self.run_ostf()
self.env.make_snapshot("deploy_murano_bvt", is_make=True) self.env.make_snapshot("deploy_murano_bvt", is_make=True)

View File

@ -39,7 +39,7 @@ class CloseSSHConnectionsPlugin(plugins.Plugin):
def import_tests(): def import_tests():
from murano_plugin import test_murano_plugin_bvt #noqa from murano_plugin import test_murano_plugin_bvt # noqa
def run_tests(): def run_tests():

View File

@ -38,4 +38,4 @@ setup(
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
], ],
install_requires=get_requirements_list('./fuelweb_test/requirements.txt'), install_requires=get_requirements_list('./fuelweb_test/requirements.txt'),
) )