summaryrefslogtreecommitdiff
path: root/tests/sourcecache
diff options
context:
space:
mode:
authorWilliam Salmon <will.salmon@codethink.co.uk>2019-07-19 10:16:03 +0100
committerWilliam Salmon <will.salmon@codethink.co.uk>2019-07-25 13:57:18 +0100
commit91140a0360afb850aab529bd8375220d2e44c28f (patch)
tree617104e39ca1fc473fd889c55dcaed4f7e4835bd /tests/sourcecache
parent3b2e5de22dd6c8a68e29930fc20ade39dff9364b (diff)
downloadbuildstream-91140a0360afb850aab529bd8375220d2e44c28f.tar.gz
Mark buildbox tests as xfail if they require non implemented features
Diffstat (limited to 'tests/sourcecache')
-rw-r--r--tests/sourcecache/push.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/sourcecache/push.py b/tests/sourcecache/push.py
index b0fae616e..ad9653f9d 100644
--- a/tests/sourcecache/push.py
+++ b/tests/sourcecache/push.py
@@ -28,7 +28,7 @@ from buildstream._project import Project
from buildstream import _yaml
from buildstream.testing import cli # pylint: disable=unused-import
from buildstream.testing import create_repo
-
+from buildstream.testing._utils.site import HAVE_SANDBOX
from tests.testutils import create_artifact_share, dummy_context
DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "project")
@@ -182,6 +182,7 @@ def test_push_fail(cli, tmpdir, datafiles):
assert "Pushed" not in res.stderr
+@pytest.mark.xfail(HAVE_SANDBOX == 'buildbox', reason='Not working with BuildBox', strict=True)
@pytest.mark.datafiles(DATA_DIR)
def test_source_push_build_fail(cli, tmpdir, datafiles):
project_dir = str(datafiles)