summaryrefslogtreecommitdiff
path: root/tests/sources/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sources/local.py')
-rw-r--r--tests/sources/local.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/sources/local.py b/tests/sources/local.py
index de12473d9..3b96a074f 100644
--- a/tests/sources/local.py
+++ b/tests/sources/local.py
@@ -3,11 +3,13 @@ import pytest
from buildstream._exceptions import ErrorDomain, LoadErrorReason
from tests.testutils import cli, filetypegenerator
+from tests.testutils.site import IS_LINUX, NO_FUSE
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'local',
)
+pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system')
@pytest.mark.datafiles(os.path.join(DATA_DIR, 'basic'))