summaryrefslogtreecommitdiff
path: root/tests/pipeline
diff options
context:
space:
mode:
authorPhillip Smyth <phillip.smyth@codethink.co.uk>2018-08-20 13:58:00 +0100
committerPhillip Smyth <phillip.smyth@codethink.co.uk>2018-08-20 13:58:00 +0100
commit1ac64da2f604b4330e818043d829e8791f1e5dba (patch)
tree4e5eaa84825a84f9af8468accab01786584d6f9d /tests/pipeline
parent5a66710733fcb0d3e24da9ba935de56b79bdb4c5 (diff)
downloadbuildstream-1ac64da2f604b4330e818043d829e8791f1e5dba.tar.gz
Added NO_FUSE flag to tests that need fuseno_fuse_flag
Diffstat (limited to 'tests/pipeline')
-rw-r--r--tests/pipeline/load.py3
-rw-r--r--tests/pipeline/preflight.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py
index 29ceb6dde..178e827b0 100644
--- a/tests/pipeline/load.py
+++ b/tests/pipeline/load.py
@@ -3,6 +3,9 @@ import pytest
from buildstream._exceptions import ErrorDomain
from buildstream import _yaml
from tests.testutils.runcli import cli
+from tests.testutils.site import IS_LINUX, NO_FUSE
+
+pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system')
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
diff --git a/tests/pipeline/preflight.py b/tests/pipeline/preflight.py
index 4692d090e..229a688a9 100644
--- a/tests/pipeline/preflight.py
+++ b/tests/pipeline/preflight.py
@@ -3,6 +3,9 @@ import pytest
from buildstream._exceptions import ErrorDomain
from tests.testutils.runcli import cli
+from tests.testutils.site import IS_LINUX, NO_FUSE
+
+pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system')
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),