diff options
author | William Salmon <will.salmon@codethink.co.uk> | 2019-07-19 10:16:03 +0100 |
---|---|---|
committer | William Salmon <will.salmon@codethink.co.uk> | 2019-07-25 13:57:18 +0100 |
commit | 91140a0360afb850aab529bd8375220d2e44c28f (patch) | |
tree | 617104e39ca1fc473fd889c55dcaed4f7e4835bd /tests/sourcecache | |
parent | 3b2e5de22dd6c8a68e29930fc20ade39dff9364b (diff) | |
download | buildstream-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.py | 3 |
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) |