diff options
author | Jürg Billeter <j@bitron.ch> | 2019-12-10 12:34:19 +0000 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-12-10 12:34:19 +0000 |
commit | 4ad66cd51f36319feef0ed0824e303f3f64c7422 (patch) | |
tree | 0a71cc445f0fdd3f0cfa14466a0ff7d11adc3743 /tests/integration/messages.py | |
parent | 393fd2d458181cb9cbf30133dc5bbac8659db84b (diff) | |
parent | 9fe6c9e63a50edd80c792608b6c6bc63ff2e2e1f (diff) | |
download | buildstream-4ad66cd51f36319feef0ed0824e303f3f64c7422.tar.gz |
Merge branch 'juerg/buildbox-run' into 'master'
Add buildbox-run sandboxing backend
See merge request BuildStream/buildstream!1738
Diffstat (limited to 'tests/integration/messages.py')
-rw-r--r-- | tests/integration/messages.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/messages.py b/tests/integration/messages.py index f35b778d6..8bd56b82c 100644 --- a/tests/integration/messages.py +++ b/tests/integration/messages.py @@ -38,6 +38,7 @@ DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "project",) @pytest.mark.datafiles(DATA_DIR) @pytest.mark.skipif(not HAVE_SANDBOX, reason="Only available with a functioning sandbox") +@pytest.mark.xfail(HAVE_SANDBOX == "buildbox-run", reason="Individual commands are not logged with command batching") def test_disable_message_lines(cli, datafiles): project = str(datafiles) element_path = os.path.join(project, "elements") @@ -66,6 +67,7 @@ def test_disable_message_lines(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-run", reason="Individual commands are not logged with command batching") def test_disable_error_lines(cli, datafiles): project = str(datafiles) element_path = os.path.join(project, "elements") |