Add flake8-import-order extension to tox.ini

This package adds 3 new flake8 warnings

* ``I100``: Your import statements are in the wrong order.
* ``I101``: The names in your from import are in the wrong order.
* ``I201``: Missing newline between sections or imports.

Change-Id: I4feabcd4db583d213e0e4d414eee267b0ddb8870
This commit is contained in:
lkuchlan 2020-08-04 11:19:11 +03:00
parent 7674f96648
commit 1d1461d232
26 changed files with 48 additions and 38 deletions

View File

@ -10,15 +10,14 @@
# License for the specific language governing permissions and limitations
# under the License.
import six
import sys
from oslo_log import log
import six
from tempest import config
from tempest.lib.common import ssh
from tempest.lib.common.utils import test_utils
import tempest.lib.exceptions
from tempest.lib import exceptions
CONF = config.CONF
@ -30,7 +29,7 @@ def debug_ssh(function):
def wrapper(self, *args, **kwargs):
try:
return function(self, *args, **kwargs)
except tempest.lib.exceptions.SSHTimeout:
except exceptions.SSHTimeout:
try:
original_exception = sys.exc_info()
caller = test_utils.find_test_caller() or "not found"

View File

@ -18,7 +18,6 @@ import time
import six
from six.moves.urllib import parse as urlparse
from tempest import config
from tempest.lib.common import rest_client
from tempest.lib.common.utils import data_utils
@ -26,6 +25,7 @@ from tempest.lib import exceptions
from manila_tempest_tests import share_exceptions
CONF = config.CONF

View File

@ -15,9 +15,9 @@
import json
import re
import six
import time
import six
from six.moves.urllib import parse
from tempest import config
from tempest.lib.common.utils import data_utils

View File

@ -14,11 +14,11 @@
# under the License.
import ddt
from tempest import config
import testtools
from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
from tempest import config
from testtools import testcase as tc
CONF = config.CONF

View File

@ -14,13 +14,14 @@
# under the License.
import ddt
import manila_tempest_tests.tests.api.test_replication_negative as rep_neg_test
from tempest import config
from tempest.lib import exceptions as lib_exc
import testtools
from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.api import test_replication_negative as \
rep_neg_test
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -13,8 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
import ddt
import itertools
import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from testtools import testcase as tc
@ -23,6 +24,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF
LATEST_MICROVERSION = CONF.share.max_api_microversion

View File

@ -16,13 +16,13 @@
import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from testtools import testcase as tc
from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -17,13 +17,13 @@ import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from testtools import testcase as tc
from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -19,7 +19,6 @@ import traceback
from oslo_log import log
import six
from tempest import config
from tempest.lib.common import cred_client
from tempest.lib.common.utils import data_utils
@ -31,6 +30,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests import share_exceptions
from manila_tempest_tests import utils
CONF = config.CONF
LOG = log.getLogger(__name__)

View File

@ -13,13 +13,15 @@
# License for the specific language governing permissions and limitations
# under the License.
import ddt
import itertools
from manila_tempest_tests import utils
import ddt
from tempest import config
from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF
PRE_SHARE_REPLICAS_MICROVERSION = "2.52"

View File

@ -14,7 +14,6 @@
# under the License.
import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from testtools import testcase as tc
@ -24,6 +23,7 @@ from manila_tempest_tests import share_exceptions
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -14,7 +14,6 @@
# under the License.
import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions
@ -24,6 +23,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -13,9 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
import itertools
import ddt
import itertools
from tempest import config
from tempest.lib import exceptions as lib_exc
import testtools
@ -24,6 +24,7 @@ from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF
LATEST_MICROVERSION = CONF.share.max_api_microversion

View File

@ -16,13 +16,13 @@
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
from testtools import testcase as tc
from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -14,7 +14,6 @@
# under the License.
import ddt
from tempest import config
from tempest.lib import exceptions as lib_exc
import testtools
@ -24,6 +23,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -13,8 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
import ddt
import random
import ddt
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
@ -22,6 +23,7 @@ from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
CONF = config.CONF
LATEST_MICROVERSION = CONF.share.max_api_microversion

View File

@ -13,15 +13,15 @@
# License for the specific language governing permissions and limitations
# under the License.
import six
import ddt
import six
from tempest import config
from testtools import testcase as tc
from manila_tempest_tests.tests.api import base
from manila_tempest_tests import utils
CONF = config.CONF

View File

@ -21,7 +21,6 @@ from oslo_log import log
from oslo_utils import netutils
from oslo_utils import uuidutils
import six
from tempest.common import compute
from tempest.common import image as common_image
from tempest.common.utils.linux import remote_client
@ -32,14 +31,14 @@ from tempest import exceptions
from tempest.lib.common.utils import data_utils
from tempest.lib.common.utils import test_utils
from tempest.lib import exceptions as lib_exc
import tempest.test
from tempest import test
CONF = config.CONF
LOG = log.getLogger(__name__)
class ScenarioTest(tempest.test.BaseTestCase):
class ScenarioTest(test.BaseTestCase):
"""Base class for scenario tests. Uses tempest own clients. """
credentials = ['primary']

View File

@ -13,9 +13,15 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempfile import mkstemp
from oslo_log import log
import six
from six.moves.urllib.request import urlopen
from tempest.common import waiters
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions
from manila_tempest_tests.common import constants
from manila_tempest_tests.common import remote_client
@ -23,12 +29,6 @@ from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.scenario import manager
from manila_tempest_tests import utils
from tempest.common import waiters
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions
from tempfile import mkstemp
CONF = config.CONF
LOG = log.getLogger(__name__)

View File

@ -14,7 +14,6 @@
# under the License.
import ddt
from oslo_log import log as logging
from tempest import config
from tempest.lib import exceptions
@ -26,6 +25,7 @@ from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.scenario import manager_share as manager
from manila_tempest_tests import utils
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -11,10 +11,9 @@
# under the License.
import ddt
import six
from oslo_log import log as logging
from oslo_utils import units
import six
from tempest import config
from tempest.lib import exceptions
from testtools import testcase as tc
@ -23,6 +22,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.scenario import manager_share as manager
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -11,7 +11,6 @@
# under the License.
import ddt
from oslo_log import log as logging
from tempest import config
from tempest.lib import exceptions
@ -22,6 +21,7 @@ from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.scenario import manager_share as manager
from manila_tempest_tests import utils
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -10,10 +10,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import six
import time
from oslo_log import log as logging
import six
from tempest import config
from tempest.lib import exceptions
import testtools
@ -23,6 +23,7 @@ from manila_tempest_tests.common import constants
from manila_tempest_tests.tests.api import base
from manila_tempest_tests.tests.scenario import manager_share as manager
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -13,10 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
from netaddr import ip
import random
import re
from netaddr import ip
import six
from tempest import config
import testtools

View File

@ -13,3 +13,4 @@ testtools>=2.2.0 # MIT
openstackdocstheme>=1.31.2 # Apache-2.0
# releasenotes
reno>=2.5.0 # Apache-2.0
flake8-import-order

View File

@ -43,3 +43,5 @@ show-source = True
ignore = E123,E125,W503,W504
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
import-order-style = pep8
application-import-names = manila_tempest_tests