From 0363e15b7c5b35f2736db461161a6e193b873e1c Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Thu, 16 Mar 2017 07:20:35 -0700 Subject: [PATCH] flake8: Specify 'ironic' as name of app Specify 'ironic' as the name of the application for the flake8-import-order plugin. That way it knows that imports of ironic should come after external libraries. Change-Id: I3e6fb237b9846e8de1a071f3a659c23c44bc7f75 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index eb05d00e1..0514c95a0 100644 --- a/tox.ini +++ b/tox.ini @@ -96,6 +96,7 @@ commands = {posargs} ignore = E129 exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build import-order-style = pep8 +application-import-names = ironic max-complexity=17 # [H106] Don’t put vim configuration in source files. # [H203] Use assertIs(Not)None to check for None.