summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-11-26 11:57:48 +0100
committerJürg Billeter <j@bitron.ch>2019-12-07 17:33:41 +0100
commit0da6d3db1f877b264d5bf3ba2e31cafad28dfeb2 (patch)
tree934d1d1bf931acbe53fada3799411a1743080dcc
parent385ab81a953d68c69f7ca6a34d1d0a13ff55c5df (diff)
downloadbuildstream-0da6d3db1f877b264d5bf3ba2e31cafad28dfeb2.tar.gz
tests/integration/script.py: xfail read-only-root for buildbox-run
The root directory can't be marked read-only with buildbox-run.
-rw-r--r--tests/integration/script.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/integration/script.py b/tests/integration/script.py
index b7a691011..b5e21452c 100644
--- a/tests/integration/script.py
+++ b/tests/integration/script.py
@@ -92,6 +92,9 @@ def test_script_root(cli, datafiles):
@pytest.mark.datafiles(DATA_DIR)
@pytest.mark.skipif(not HAVE_SANDBOX, reason="Only available with a functioning sandbox")
@pytest.mark.xfail(HAVE_SANDBOX == "buildbox", reason="Not working with BuildBox")
+@pytest.mark.xfail(
+ HAVE_SANDBOX == "buildbox-run", reason="Read-only root directory not supported by buildbox-run",
+)
def test_script_no_root(cli, datafiles):
project = str(datafiles)
element_path = os.path.join(project, "elements")