summaryrefslogtreecommitdiff
path: root/ironic/tests/base.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <openstack.org@sodarock.com>2018-02-26 09:00:42 -0800
committerJohn L. Villalovos <openstack.org@sodarock.com>2018-02-26 09:00:42 -0800
commit843c77357363bdee77988a6a98d0058e5ab687d7 (patch)
treef861883465427d3e866d1baf6342e4c235ac6aab /ironic/tests/base.py
parent486a6f961c9ea65590a1cf6fd9769fd8bd9f5657 (diff)
downloadironic-843c77357363bdee77988a6a98d0058e5ab687d7.tar.gz
tox.ini: flake8: Remove I202 from ignore list
Remove I202 (Additional newline in a group of imports) from the ignore list. I202 is a check from the flake8-import-order [1] package. There was a note to remove this check once the tempest plugin was removed. As the tempest plugin has been removed we can now remove the exclusion of this check. Update files which failed this test. [1] https://github.com/PyCQA/flake8-import-order Change-Id: I6018d5a90174b3d4b6b8d8e05cee1c1104ccfde9
Diffstat (limited to 'ironic/tests/base.py')
-rw-r--r--ironic/tests/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/tests/base.py b/ironic/tests/base.py
index b2d380bbd..9bca7a2ce 100644
--- a/ironic/tests/base.py
+++ b/ironic/tests/base.py
@@ -30,7 +30,7 @@ import tempfile
import eventlet
eventlet.monkey_patch(os=False)
-import fixtures
+import fixtures # noqa for I202 due to 'import eventlet' above
from ironic_lib import utils
import mock
from oslo_concurrency import processutils