You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by gi...@apache.org on 2020/12/29 13:08:12 UTC

[buildstream] 04/04: Fix tests

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch test_coverage_segfault
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 76730dcb20ceff348f9f629b1aa29825eb6775ee
Author: Tristan Maat <tr...@codethink.co.uk>
AuthorDate: Tue Nov 7 18:07:20 2017 +0000

    Fix tests
---
 tests/pipeline/load.py       | 11 -----------
 tests/plugins/pipeline.py    |  2 +-
 tests/project/plugins.py     |  2 +-
 tests/variables/variables.py |  2 +-
 4 files changed, 3 insertions(+), 14 deletions(-)

diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py
index 9cd2fea..eeeeb1d 100644
--- a/tests/pipeline/load.py
+++ b/tests/pipeline/load.py
@@ -14,17 +14,6 @@ DATA_DIR = os.path.join(
 )
 
 
-def create_pipeline(tmpdir, basedir, target):
-    context = Context([])
-    project = Project(basedir, context)
-
-    context.deploydir = os.path.join(str(tmpdir), 'deploy')
-    context.artifactdir = os.path.join(str(tmpdir), 'artifact')
-    context._platform = Platform.get_platform()
-
-    return Pipeline(context, project, [target])
-
-
 @pytest.mark.datafiles(os.path.join(DATA_DIR, 'simple'))
 def test_load_simple(cli, datafiles, tmpdir):
     basedir = os.path.join(datafiles.dirname, datafiles.basename)
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py
index 5f1a85e..8f85253 100644
--- a/tests/plugins/pipeline.py
+++ b/tests/plugins/pipeline.py
@@ -24,7 +24,7 @@ def create_pipeline(tmpdir, basedir, target):
     context.artifactdir = os.path.join(str(tmpdir), 'artifact')
     context._platform = Platform.get_platform()
 
-    return Pipeline(context, project, [target])
+    return Pipeline(context, project, [target], [])
 
 
 @pytest.mark.skipif(not HAVE_ROOT, reason="requires root permissions")
diff --git a/tests/project/plugins.py b/tests/project/plugins.py
index 5f75172..ea21730 100644
--- a/tests/project/plugins.py
+++ b/tests/project/plugins.py
@@ -21,7 +21,7 @@ def create_pipeline(tmpdir, basedir, target):
     context.artifactdir = os.path.join(str(tmpdir), 'artifact')
     context._platform = Platform.get_platform()
 
-    return Pipeline(context, project, [target])
+    return Pipeline(context, project, [target], [])
 
 
 # We've already validated that the plugin system works in
diff --git a/tests/variables/variables.py b/tests/variables/variables.py
index 7562857..04ac921 100644
--- a/tests/variables/variables.py
+++ b/tests/variables/variables.py
@@ -20,7 +20,7 @@ def create_pipeline(tmpdir, basedir, target):
     context.artifactdir = os.path.join(str(tmpdir), 'artifact')
     context._platform = Platform.get_platform()
 
-    return Pipeline(context, project, [target])
+    return Pipeline(context, project, [target], [])
 
 
 def assert_command(datafiles, tmpdir, target, command, expected):