From d8ec3ecb5334680045df0e5223752b629e5b9c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Sun, 25 Mar 2018 11:18:13 +0200 Subject: tests/testutils/site.py: Add HAVE_ARPY --- tests/testutils/site.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/testutils/site.py b/tests/testutils/site.py index e746d4a0f..7dc01a613 100644 --- a/tests/testutils/site.py +++ b/tests/testutils/site.py @@ -42,4 +42,10 @@ try: except ProgramNotFoundError: HAVE_LZIP = False +try: + import arpy + HAVE_ARPY = True +except ImportError: + HAVE_ARPY = False + IS_LINUX = os.getenv('BST_FORCE_BACKEND', sys.platform).startswith('linux') -- cgit v1.2.1