diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-09 10:51:46 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 09:38:41 +0000 |
commit | 7474ed1f38b7b750e1cd2b5ebbfe9fc0f3f3d364 (patch) | |
tree | f702fec85230e29ed0a9b709d1760249a58e5901 /tests/cachekey | |
parent | 180b8ada3922f7a1b139d76559ebece2bb54579f (diff) | |
download | buildstream-7474ed1f38b7b750e1cd2b5ebbfe9fc0f3f3d364.tar.gz |
tests:lint: reorder imports for consistency
- Remove all wrong-import-order from pylint
- Order some subgroups of imports
Diffstat (limited to 'tests/cachekey')
-rw-r--r-- | tests/cachekey/cachekey.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/cachekey/cachekey.py b/tests/cachekey/cachekey.py index 456e403d4..7d2a13e07 100644 --- a/tests/cachekey/cachekey.py +++ b/tests/cachekey/cachekey.py @@ -35,13 +35,15 @@ # run over to the corresponding .expected source files and commit # the result. # +from collections import OrderedDict +import os + +import pytest + from buildstream.plugintestutils.runcli import cli -from tests.testutils.site import HAVE_BZR, HAVE_GIT, HAVE_OSTREE, IS_LINUX, MACHINE_ARCH from buildstream.plugin import CoreWarnings from buildstream import _yaml -import os -from collections import OrderedDict -import pytest +from tests.testutils.site import HAVE_BZR, HAVE_GIT, HAVE_OSTREE, IS_LINUX, MACHINE_ARCH ############################################## |