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 /src/buildstream/testing/_sourcetests | |
parent | 3b2e5de22dd6c8a68e29930fc20ade39dff9364b (diff) | |
download | buildstream-91140a0360afb850aab529bd8375220d2e44c28f.tar.gz |
Mark buildbox tests as xfail if they require non implemented features
Diffstat (limited to 'src/buildstream/testing/_sourcetests')
-rw-r--r-- | src/buildstream/testing/_sourcetests/source_determinism.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildstream/testing/_sourcetests/source_determinism.py b/src/buildstream/testing/_sourcetests/source_determinism.py index fc8ad9893..d46d38b33 100644 --- a/src/buildstream/testing/_sourcetests/source_determinism.py +++ b/src/buildstream/testing/_sourcetests/source_determinism.py @@ -50,6 +50,7 @@ def create_test_directory(*path, mode=0o644): @pytest.mark.datafiles(DATA_DIR) @pytest.mark.parametrize("kind", [*ALL_REPO_KINDS]) @pytest.mark.skipif(not HAVE_SANDBOX, reason='Only available with a functioning sandbox') +@pytest.mark.skipif(HAVE_SANDBOX == 'buildbox', reason='Not working with BuildBox, Must Fix') def test_deterministic_source_umask(cli, tmpdir, datafiles, kind): project = str(datafiles) element_name = 'list.bst' |