summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-02-06 17:19:10 +0100
committerJürg Billeter <j@bitron.ch>2020-02-11 13:07:30 +0100
commit5df94c7317796681d3ac4954831a864cbfb74ea0 (patch)
tree305e8e148d9cdced651132658abbf7bbcd0d587b /tests
parent87999583c18ec367444e4c0aa7c1deeb04ab07d6 (diff)
downloadbuildstream-5df94c7317796681d3ac4954831a864cbfb74ea0.tar.gz
.gitlab-ci/buildgrid-compose.yml: Switch to buildbox-worker
Use buildbox-worker with buildbox-run-bubblewrap and buildbox-fuse from the buildbox-nightly docker image instead of the Python buildbox worker as the latter still uses the obsolete `buildbox` command. buildbox-worker launch is delayed as it fails if started before the BuildGrid server is ready.
Diffstat (limited to 'tests')
-rw-r--r--tests/remoteexecution/workspace.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/remoteexecution/workspace.py b/tests/remoteexecution/workspace.py
index 3bf35a738..627ae312f 100644
--- a/tests/remoteexecution/workspace.py
+++ b/tests/remoteexecution/workspace.py
@@ -184,17 +184,12 @@ def get_timemark(cli, project, element_name, marker):
@pytest.mark.datafiles(DATA_DIR)
+@pytest.mark.xfail(reason="incremental workspace builds are not yet supported")
@pytest.mark.parametrize(
"modification", [pytest.param("content"), pytest.param("time"),],
)
@pytest.mark.parametrize(
- "buildtype",
- [
- pytest.param("non-incremental"),
- pytest.param(
- "incremental", marks=pytest.mark.xfail(reason="incremental workspace builds are not yet supported")
- ),
- ],
+ "buildtype", [pytest.param("non-incremental"), pytest.param("incremental"),],
)
def test_workspace_build(cli, tmpdir, datafiles, modification, buildtype):
incremental = buildtype == "incremental"