summaryrefslogtreecommitdiff
path: root/tests/examples/running-commands.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-05-31 14:55:54 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-06-06 14:33:59 +0000
commit1730ba5a2dd3f325cbe8aed29a39ef6d0b8c14ab (patch)
treea18664458b3d51d5a2b2314417dec775e82d933e /tests/examples/running-commands.py
parent09b0cf8a208c46440cdb4d59ef1388522f12857a (diff)
downloadbuildstream-1730ba5a2dd3f325cbe8aed29a39ef6d0b8c14ab.tar.gz
test:utils/site: Consolidate Bwrap 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 bubblewrap related ones in a single place.
Diffstat (limited to 'tests/examples/running-commands.py')
-rw-r--r--tests/examples/running-commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/examples/running-commands.py b/tests/examples/running-commands.py
index 7089f143e..1be1066d9 100644
--- a/tests/examples/running-commands.py
+++ b/tests/examples/running-commands.py
@@ -5,7 +5,8 @@ import os
import pytest
from buildstream.testing import cli_integration as cli # pylint: disable=unused-import
-from tests.testutils.site import IS_LINUX, HAVE_BWRAP, MACHINE_ARCH
+from buildstream.testing._utils.site import HAVE_BWRAP
+from tests.testutils.site import IS_LINUX, MACHINE_ARCH
pytestmark = pytest.mark.integration