summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-08 20:40:08 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-08 21:27:21 +0900
commit213d9072b684d2dff78d8b4f1c7cfa9d6335b0d0 (patch)
tree8dc7a203d486e45430cadaf5a4e33e720d1ef015 /tests
parent34ba445fd1963acada0733c196483c98a57fd753 (diff)
downloadbuildstream-213d9072b684d2dff78d8b4f1c7cfa9d6335b0d0.tar.gz
Refactor: Move context.py -> _context.py
Consequently: o Changed Plugin.get_context() to a private Plugin._get_context() accessor. o Updated anything which imports Context to do so from private _context module o Updated docs to exclude the now private Context
Diffstat (limited to 'tests')
-rw-r--r--tests/context/context.py2
-rw-r--r--tests/pipeline/load.py3
-rw-r--r--tests/plugins/pipeline.py3
-rw-r--r--tests/project/plugins.py3
-rw-r--r--tests/project/project.py2
-rw-r--r--tests/variables/variables.py3
6 files changed, 10 insertions, 6 deletions
diff --git a/tests/context/context.py b/tests/context/context.py
index be0dd8a55..0db589a1a 100644
--- a/tests/context/context.py
+++ b/tests/context/context.py
@@ -1,7 +1,7 @@
import os
import pytest
-from buildstream import Context
+from buildstream._context import Context
from buildstream._exceptions import LoadError, LoadErrorReason
from tests.testutils.site import HAVE_ROOT
diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py
index a0b6d7ae3..7adcd0f1e 100644
--- a/tests/pipeline/load.py
+++ b/tests/pipeline/load.py
@@ -1,7 +1,8 @@
import os
import pytest
-from buildstream import Context, Scope
+from buildstream import Scope
+from buildstream._context import Context
from buildstream._project import Project
from buildstream._pipeline import Pipeline
from buildstream._platform import Platform
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py
index 6fac82b89..5f1a85e24 100644
--- a/tests/plugins/pipeline.py
+++ b/tests/plugins/pipeline.py
@@ -1,7 +1,8 @@
import os
import pytest
-from buildstream import Context, Scope
+from buildstream import Scope
+from buildstream._context import Context
from buildstream._project import Project
from buildstream._exceptions import PluginError
from buildstream._pipeline import Pipeline
diff --git a/tests/project/plugins.py b/tests/project/plugins.py
index 424548082..5f7517278 100644
--- a/tests/project/plugins.py
+++ b/tests/project/plugins.py
@@ -1,7 +1,8 @@
import os
import pytest
-from buildstream import Context, Scope
+from buildstream import Scope
+from buildstream._context import Context
from buildstream._project import Project
from buildstream._pipeline import Pipeline
from buildstream._platform import Platform
diff --git a/tests/project/project.py b/tests/project/project.py
index 32a264c6d..3a1484309 100644
--- a/tests/project/project.py
+++ b/tests/project/project.py
@@ -1,7 +1,7 @@
import os
import pytest
-from buildstream import Context
+from buildstream._context import Context
from buildstream._project import Project
from buildstream._exceptions import LoadError, LoadErrorReason
diff --git a/tests/variables/variables.py b/tests/variables/variables.py
index 51af7e27b..7562857f9 100644
--- a/tests/variables/variables.py
+++ b/tests/variables/variables.py
@@ -1,7 +1,8 @@
import os
import pytest
-from buildstream import Context, BuildElement
+from buildstream import BuildElement
+from buildstream._context import Context
from buildstream._project import Project
from buildstream._pipeline import Pipeline
from buildstream._platform import Platform