summaryrefslogtreecommitdiff
path: root/tests/plugins
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/plugins
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/plugins')
-rw-r--r--tests/plugins/pipeline.py3
1 files changed, 2 insertions, 1 deletions
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