summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-11-21 14:29:49 +0000
committerJürg Billeter <j@bitron.ch>2018-11-21 14:29:49 +0000
commit58353aad0e603679fd55e2c42bd3bb463088854f (patch)
treec6608ccfaf1c98f792d1b69d52ba6d84a49df725
parentdaca0c01c5dd56e99f89852a4c7643289396cfb2 (diff)
parent050cd1bda2e9ee8061a0fe999a9f89bc272b082e (diff)
downloadbuildstream-58353aad0e603679fd55e2c42bd3bb463088854f.tar.gz
Merge branch 'tpollard/pipelinehostconfig' into 'master'
tests/plugin/pipeline.py: Avoid using host user conf See merge request BuildStream/buildstream!961
-rw-r--r--tests/plugins/pipeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py
index 6cba7a125..6aee104e2 100644
--- a/tests/plugins/pipeline.py
+++ b/tests/plugins/pipeline.py
@@ -14,7 +14,7 @@ DATA_DIR = os.path.join(
def create_pipeline(tmpdir, basedir, target):
context = Context()
- context.load()
+ context.load(config=os.devnull)
context.deploydir = os.path.join(str(tmpdir), 'deploy')
context.artifactdir = os.path.join(str(tmpdir), 'artifact')
project = Project(basedir, context)