diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-30 20:11:30 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-05-08 03:59:38 +0900 |
commit | 541cd76022ca7e9ef8e4114495b908943fe3e8b1 (patch) | |
tree | 516861e75a2572d1b3811b3f04af9b087246c020 /tests | |
parent | c9f67f1e42734404fb47ddea0b507f45864d1dcf (diff) | |
download | buildstream-541cd76022ca7e9ef8e4114495b908943fe3e8b1.tar.gz |
_stream.py, _frontend: Call Stream() APIs with CLI arguments directly.
This shifts the whole responsibility of interpreting command line
targets etc to the Stream() object itself. With this commit, the
Pipeline() truly becomes slaved to the Stream().
Diffstat (limited to 'tests')
-rw-r--r-- | tests/plugins/pipeline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py index 4c0e5c397..db683094b 100644 --- a/tests/plugins/pipeline.py +++ b/tests/plugins/pipeline.py @@ -23,7 +23,7 @@ def create_pipeline(tmpdir, basedir, target): context.set_message_handler(dummy_handler) - return Pipeline(context, project, [target], []) + return Pipeline(context, project, None, [target], []) @pytest.mark.datafiles(os.path.join(DATA_DIR, 'customsource')) |