diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sources/deb.py | 2 | ||||
-rw-r--r-- | tests/testutils/site.py | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/tests/sources/deb.py b/tests/sources/deb.py index 69b7c78df..bdde20aaa 100644 --- a/tests/sources/deb.py +++ b/tests/sources/deb.py @@ -9,7 +9,7 @@ import pytest from buildstream._exceptions import ErrorDomain from buildstream import _yaml from buildstream.testing import cli # pylint: disable=unused-import -from tests.testutils.site import HAVE_ARPY +from buildstream.testing._utils.site import HAVE_ARPY from . import list_dir_contents DATA_DIR = os.path.join( diff --git a/tests/testutils/site.py b/tests/testutils/site.py index 3fcf7e150..b72be1e33 100644 --- a/tests/testutils/site.py +++ b/tests/testutils/site.py @@ -22,12 +22,6 @@ try: except (ImportError, ValueError): HAVE_OSTREE = False -try: - import arpy # pylint: disable=unused-import - HAVE_ARPY = True -except ImportError: - HAVE_ARPY = False - IS_LINUX = os.getenv('BST_FORCE_BACKEND', sys.platform).startswith('linux') IS_WSL = (IS_LINUX and 'Microsoft' in platform.uname().release) IS_WINDOWS = (os.name == 'nt') |