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-10 11:43:30 +0000
commit83c4a1fbe0737a5c16f4f071e29194789e0f366c (patch)
treeea4ab1246ffee2a7d6e5b51906d8c3ae280809f9
parent1e038a9cf648afada4c8a1d427b4d2b820b58c3e (diff)
downloadbuildstream-83c4a1fbe0737a5c16f4f071e29194789e0f366c.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")