From 6d74a6e51ffac4255eeef0d3d9786048e08b581e Mon Sep 17 00:00:00 2001 From: Vladyslav Drok Date: Wed, 25 Oct 2017 12:59:07 +0300 Subject: [PATCH] Add I202 to flake ignore list Pep8 job currently fails complaining about I202 in a bunch of modules. This change fixes the genuine errors in the module import order, and adds I202 to the skip list so that we don't have to add noqa comments everywhere we can not satisfy the check. After we split out the tempest plugin, we'll remove I202 from the ignore list and add noqa comments in the places where it will still be needed. Change-Id: Ia170a41d35dea8c9eda2b36c907dbc518169a824 --- ironic_tempest_plugin/manager.py | 1 - ironic_tempest_plugin/tests/api/admin/test_nodes.py | 1 - 2 files changed, 2 deletions(-) diff --git a/ironic_tempest_plugin/manager.py b/ironic_tempest_plugin/manager.py index 560a6cc..9967a5d 100644 --- a/ironic_tempest_plugin/manager.py +++ b/ironic_tempest_plugin/manager.py @@ -23,7 +23,6 @@ import subprocess from oslo_log import log from oslo_utils import netutils - from tempest.common import compute from tempest.common.utils.linux import remote_client from tempest.common.utils import net_utils diff --git a/ironic_tempest_plugin/tests/api/admin/test_nodes.py b/ironic_tempest_plugin/tests/api/admin/test_nodes.py index 08a57e0..d992a65 100644 --- a/ironic_tempest_plugin/tests/api/admin/test_nodes.py +++ b/ironic_tempest_plugin/tests/api/admin/test_nodes.py @@ -11,7 +11,6 @@ # under the License. import six - from tempest import config from tempest.lib.common.utils import data_utils from tempest.lib import decorators