summaryrefslogtreecommitdiff
path: root/tests/integration/cachedfail.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-06-05 14:38:29 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-06-06 14:34:00 +0000
commit75433adb848cd92b1600391ff1553feaaf274608 (patch)
tree5f6a49c71425e14ec2c696fe1335167f2b5d534c /tests/integration/cachedfail.py
parent8c19f8d8270c9095e30a0ef9b34332fb0f4b5868 (diff)
downloadbuildstream-75433adb848cd92b1600391ff1553feaaf274608.tar.gz
test:utils/site: Consolidate HAVE_SANDBOX in a single site file
We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Remove HAVE_SANDBOX from tests/testutils/site.py and change all imports to point to the other one
Diffstat (limited to 'tests/integration/cachedfail.py')
-rw-r--r--tests/integration/cachedfail.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/cachedfail.py b/tests/integration/cachedfail.py
index 5c29b338f..eb7723b64 100644
--- a/tests/integration/cachedfail.py
+++ b/tests/integration/cachedfail.py
@@ -7,11 +7,11 @@ import pytest
from buildstream import _yaml
from buildstream._exceptions import ErrorDomain
from buildstream.testing import cli_integration as cli # pylint: disable=unused-import
-from buildstream.testing._utils.site import HAVE_BWRAP
+from buildstream.testing._utils.site import HAVE_BWRAP, HAVE_SANDBOX
from tests.conftest import clean_platform_cache
from tests.testutils import create_artifact_share
-from tests.testutils.site import IS_LINUX, HAVE_SANDBOX
+from tests.testutils.site import IS_LINUX
pytestmark = pytest.mark.integration