summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarius Makovsky <traveltissues@protonmail.com>2019-09-18 14:44:48 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-09-24 15:58:25 +0000
commit3bab0b722f72f3f290b07310fe2ac46bdc85cd95 (patch)
treed2c547b9a41aaa1a46e8505109cbe9a0d854d2a2
parentbde0c6fd1b42c8cbb1fe81d42898082616a5b528 (diff)
downloadbuildstream-3bab0b722f72f3f290b07310fe2ac46bdc85cd95.tar.gz
tests: Remove xfails from buildbox integration tests
Opening and building workspaces when buildbox is the sandbox is now supported.
-rw-r--r--tests/examples/developing.py1
-rw-r--r--tests/integration/shell.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/examples/developing.py b/tests/examples/developing.py
index 2f53c8a33..53a554b86 100644
--- a/tests/examples/developing.py
+++ b/tests/examples/developing.py
@@ -76,7 +76,6 @@ def test_open_workspace(cli, tmpdir, datafiles):
@pytest.mark.skipif(MACHINE_ARCH != 'x86-64',
reason='Examples are written for x86-64')
@pytest.mark.skipif(not IS_LINUX or not HAVE_SANDBOX, reason='Only available on linux with SANDBOX')
-@pytest.mark.xfail(HAVE_SANDBOX == 'buildbox', reason='Not working with BuildBox', strict=True)
@pytest.mark.skipif(HAVE_SANDBOX == 'chroot', reason='This is not meant to work with chroot')
@pytest.mark.datafiles(DATA_DIR)
def test_make_change_in_workspace(cli, tmpdir, datafiles):
diff --git a/tests/integration/shell.py b/tests/integration/shell.py
index e4c521815..57cab587b 100644
--- a/tests/integration/shell.py
+++ b/tests/integration/shell.py
@@ -374,7 +374,6 @@ def test_integration_devices(cli, datafiles):
@pytest.mark.parametrize("build_shell", [("build"), ("nobuild")])
@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
@pytest.mark.skipif(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
-@pytest.mark.xfail(HAVE_SANDBOX == 'buildbox', reason='Not working with BuildBox', strict=True)
def test_integration_external_workspace(cli, tmpdir_factory, datafiles, build_shell, guess_element):
tmpdir = tmpdir_factory.mktemp("")
project = str(datafiles)