diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 14:38:29 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 14:34:00 +0000 |
commit | 75433adb848cd92b1600391ff1553feaaf274608 (patch) | |
tree | 5f6a49c71425e14ec2c696fe1335167f2b5d534c /tests/integration/pip_source.py | |
parent | 8c19f8d8270c9095e30a0ef9b34332fb0f4b5868 (diff) | |
download | buildstream-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/pip_source.py')
-rw-r--r-- | tests/integration/pip_source.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/pip_source.py b/tests/integration/pip_source.py index 91fcbc6a8..632b5ae24 100644 --- a/tests/integration/pip_source.py +++ b/tests/integration/pip_source.py @@ -8,8 +8,9 @@ from buildstream import _yaml from buildstream.testing import cli_integration as cli # pylint: disable=unused-import from buildstream.testing.integration import assert_contains +from buildstream.testing._utils.site import HAVE_SANDBOX + from tests.testutils.python_repo import setup_pypi_repo # pylint: disable=unused-import -from tests.testutils.site import HAVE_SANDBOX pytestmark = pytest.mark.integration |