diff options
author | Darius Makovsky <traveltissues@protonmail.com> | 2019-10-09 17:02:01 +0100 |
---|---|---|
committer | Darius Makovsky <traveltissues@protonmail.com> | 2019-10-09 17:38:54 +0100 |
commit | 64e2fde2dac3b421dcb744d6d476224dd0b2cc89 (patch) | |
tree | 32be42ca5d469e2e03282b680fb803362229673b /tests/frontend | |
parent | 372bcab32b37d4f78f3f6a5c0d250d1e65c599bd (diff) | |
download | buildstream-64e2fde2dac3b421dcb744d6d476224dd0b2cc89.tar.gz |
tests: unmark tests passing with buildbox
Diffstat (limited to 'tests/frontend')
-rw-r--r-- | tests/frontend/configurable_warnings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/frontend/configurable_warnings.py b/tests/frontend/configurable_warnings.py index 38b7f2912..caa91bb61 100644 --- a/tests/frontend/configurable_warnings.py +++ b/tests/frontend/configurable_warnings.py @@ -46,7 +46,6 @@ def build_project(datafiles, fatal_warnings): return project_path -@pytest.mark.xfail(HAVE_SANDBOX == 'buildbox', reason='Not working with BuildBox') @pytest.mark.datafiles(TOP_DIR) @pytest.mark.parametrize("element_name, fatal_warnings, expect_fatal, error_domain", [ ("corewarn.bst", [CoreWarnings.OVERLAPS], True, ErrorDomain.STREAM), @@ -60,6 +59,8 @@ def build_project(datafiles, fatal_warnings): ]) def test_fatal_warnings(cli, datafiles, element_name, fatal_warnings, expect_fatal, error_domain): + if HAVE_SANDBOX == 'buildbox' and error_domain != ErrorDomain.STREAM: + pytest.xfail() project_path = build_project(datafiles, fatal_warnings) result = cli.run(project=project_path, args=["build", element_name]) |