diff options
Diffstat (limited to 'tests/testutils/site.py')
-rw-r--r-- | tests/testutils/site.py | 6 |
1 files changed, 0 insertions, 6 deletions
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') |