summaryrefslogtreecommitdiff
path: root/tests/sourcecache/fetch.py
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2020-07-03 11:33:17 +0100
committerBenjamin Schubert <contact@benschubert.me>2020-07-03 11:46:29 +0100
commit2833a6abd562a628f4039e74a1dadf12661d2b6d (patch)
tree874362f70d15e42babc6f9c578d6822b8efee0f8 /tests/sourcecache/fetch.py
parent94dcc28121a57f5e292ce653ef4b760a7ad3b6a4 (diff)
downloadbuildstream-bschubert/isort.tar.gz
setup.cfg: Use isort to sort our importsbschubert/isort
Diffstat (limited to 'tests/sourcecache/fetch.py')
-rw-r--r--tests/sourcecache/fetch.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/sourcecache/fetch.py b/tests/sourcecache/fetch.py
index 889de62f0..654fb22c1 100644
--- a/tests/sourcecache/fetch.py
+++ b/tests/sourcecache/fetch.py
@@ -19,14 +19,15 @@
#
# Pylint doesn't play well with fixtures and dependency injection from pytest
# pylint: disable=redefined-outer-name
-from contextlib import contextmanager
import os
import shutil
+from contextlib import contextmanager
+
import pytest
-from buildstream.exceptions import ErrorDomain
-from buildstream._project import Project
from buildstream import _yaml
+from buildstream._project import Project
+from buildstream.exceptions import ErrorDomain
from buildstream.testing import cli # pylint: disable=unused-import
from buildstream.testing import create_repo