diff options
Diffstat (limited to 'tests/frontend/push.py')
-rw-r--r-- | tests/frontend/push.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/frontend/push.py b/tests/frontend/push.py index 6ee301e6d..782133b37 100644 --- a/tests/frontend/push.py +++ b/tests/frontend/push.py @@ -4,9 +4,12 @@ import pytest from buildstream._exceptions import ErrorDomain from tests.testutils import cli, create_artifact_share, create_element_size from tests.testutils import generate_junction +from tests.testutils.site import IS_LINUX, NO_FUSE from . import configure_project +pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system') + # Project directory DATA_DIR = os.path.join( os.path.dirname(os.path.realpath(__file__)), |