diff options
author | Benjamin Schubert <contact@benschubert.me> | 2020-07-03 11:33:17 +0100 |
---|---|---|
committer | Benjamin Schubert <contact@benschubert.me> | 2020-07-03 11:46:29 +0100 |
commit | 2833a6abd562a628f4039e74a1dadf12661d2b6d (patch) | |
tree | 874362f70d15e42babc6f9c578d6822b8efee0f8 /tests/frontend/pull.py | |
parent | 94dcc28121a57f5e292ce653ef4b760a7ad3b6a4 (diff) | |
download | buildstream-bschubert/isort.tar.gz |
setup.cfg: Use isort to sort our importsbschubert/isort
Diffstat (limited to 'tests/frontend/pull.py')
-rw-r--r-- | tests/frontend/pull.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/frontend/pull.py b/tests/frontend/pull.py index c1fa76ab0..f54ab4577 100644 --- a/tests/frontend/pull.py +++ b/tests/frontend/pull.py @@ -4,19 +4,21 @@ import os import shutil import stat + import pytest -from buildstream import utils, _yaml + +from buildstream import _yaml, utils from buildstream.testing import cli # pylint: disable=unused-import from buildstream.testing import create_repo + from tests.testutils import ( + assert_not_shared, + assert_shared, create_artifact_share, create_split_share, generate_junction, - assert_shared, - assert_not_shared, ) - # Project directory DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "project",) |