diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-05-31 16:06:16 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 14:33:59 +0000 |
commit | 75fb7e0bf5516ffcc812361410989b022921e520 (patch) | |
tree | 468994ba7c89f0183ebf6f50b5d359130188c359 /tests/testutils | |
parent | 1730ba5a2dd3f325cbe8aed29a39ef6d0b8c14ab (diff) | |
download | buildstream-75fb7e0bf5516ffcc812361410989b022921e520.tar.gz |
test:utils/site: Consolidate Lzip environment variables in a single place
We have two different 'site' files that are redundant and both
define some variables in BuildStream environment.
Moving all the lzip related ones in a single place.
Diffstat (limited to 'tests/testutils')
-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 1ea2beb62..3fcf7e150 100644 --- a/tests/testutils/site.py +++ b/tests/testutils/site.py @@ -23,12 +23,6 @@ except (ImportError, ValueError): HAVE_OSTREE = False try: - utils.get_host_tool('lzip') - HAVE_LZIP = True -except ProgramNotFoundError: - HAVE_LZIP = False - -try: import arpy # pylint: disable=unused-import HAVE_ARPY = True except ImportError: |