diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 14:45:01 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 14:34:00 +0000 |
commit | 556f71c9a3ccdc4c524f261926a364379506066d (patch) | |
tree | 1eaa6f496116e0280c9b4dd7ab29ea0b11fe6f73 /tests/frontend/buildcheckout.py | |
parent | 75433adb848cd92b1600391ff1553feaaf274608 (diff) | |
download | buildstream-556f71c9a3ccdc4c524f261926a364379506066d.tar.gz |
test:utils/site: Consolidate IS_LINUX/WSL/Windows in a single site
We currently have two sites file containing redundant information.
- tests/testutils/site.py: Remove IS_{LINUX,WSL,WINDOWS}
- rest: Change imports to import those from
buildstream/tests/_utils/site.py
Diffstat (limited to 'tests/frontend/buildcheckout.py')
-rw-r--r-- | tests/frontend/buildcheckout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frontend/buildcheckout.py b/tests/frontend/buildcheckout.py index 835f084cf..556bf811c 100644 --- a/tests/frontend/buildcheckout.py +++ b/tests/frontend/buildcheckout.py @@ -9,10 +9,10 @@ import subprocess import pytest from buildstream.testing import cli # pylint: disable=unused-import +from buildstream.testing._utils.site import IS_WINDOWS from buildstream import _yaml from buildstream._exceptions import ErrorDomain, LoadErrorReason -from tests.testutils.site import IS_WINDOWS from tests.testutils import generate_junction, yaml_file_get_provenance from . import configure_project |