summaryrefslogtreecommitdiff
path: root/tests/integration/pip_element.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/pip_element.py')
-rw-r--r--tests/integration/pip_element.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/integration/pip_element.py b/tests/integration/pip_element.py
index da0badcb3..1187ce04f 100644
--- a/tests/integration/pip_element.py
+++ b/tests/integration/pip_element.py
@@ -24,7 +24,7 @@ DATA_DIR = os.path.join(
@pytest.mark.datafiles(DATA_DIR)
-@pytest.mark.skipif(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
+@pytest.mark.xfail(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
def test_pip_build(cli, datafiles):
project = str(datafiles)
checkout = os.path.join(cli.directory, 'checkout')
@@ -61,7 +61,7 @@ def test_pip_build(cli, datafiles):
# Test running an executable built with pip
@pytest.mark.datafiles(DATA_DIR)
-@pytest.mark.skipif(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
+@pytest.mark.xfail(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
def test_pip_run(cli, datafiles):
# Create and build our test element
test_pip_build(cli, datafiles)
@@ -75,7 +75,7 @@ def test_pip_run(cli, datafiles):
@pytest.mark.datafiles(DATA_DIR)
-@pytest.mark.skipif(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
+@pytest.mark.xfail(not HAVE_SANDBOX, reason='Only available with a functioning sandbox')
def test_pip_element_should_install_pip_deps(cli, datafiles, setup_pypi_repo):
project = str(datafiles)
elements_path = os.path.join(project, 'elements')