diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 16:56:25 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 10:44:56 +0000 |
commit | 0e1b28fd6804bf323b5b552c7de237d6dd455d38 (patch) | |
tree | 4bc4ed4014e4664292730be00d6badc9d8f60a6d /tests/integration/shellbuildtrees.py | |
parent | 0f61b96369172d63108038e4992505cddcb6d4bd (diff) | |
download | buildstream-0e1b28fd6804bf323b5b552c7de237d6dd455d38.tar.gz |
test/integration: Fix 'wrong-import-order' pylint issues
Diffstat (limited to 'tests/integration/shellbuildtrees.py')
-rw-r--r-- | tests/integration/shellbuildtrees.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/integration/shellbuildtrees.py b/tests/integration/shellbuildtrees.py index bdce916ca..e371884e4 100644 --- a/tests/integration/shellbuildtrees.py +++ b/tests/integration/shellbuildtrees.py @@ -2,14 +2,16 @@ # pylint: disable=redefined-outer-name import os -import pytest import shutil -from tests.testutils import create_artifact_share -from tests.testutils.site import HAVE_SANDBOX +import pytest + from buildstream.testing import cli, cli_integration # pylint: disable=unused-import from buildstream._exceptions import ErrorDomain +from tests.testutils import create_artifact_share +from tests.testutils.site import HAVE_SANDBOX + pytestmark = pytest.mark.integration |