diff options
Diffstat (limited to 'tests/sources/remote.py')
-rw-r--r-- | tests/sources/remote.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/sources/remote.py b/tests/sources/remote.py index d3968395f..d8b730119 100644 --- a/tests/sources/remote.py +++ b/tests/sources/remote.py @@ -5,11 +5,13 @@ import pytest from buildstream._exceptions import ErrorDomain from buildstream import _yaml from tests.testutils import cli +from tests.testutils.site import IS_LINUX, NO_FUSE DATA_DIR = os.path.join( os.path.dirname(os.path.realpath(__file__)), 'remote', ) +pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system') def generate_project(project_dir, tmpdir): |