summaryrefslogtreecommitdiff
path: root/tests/examples/developing.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examples/developing.py')
-rw-r--r--tests/examples/developing.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/examples/developing.py b/tests/examples/developing.py
index 4c488d962..d73379d14 100644
--- a/tests/examples/developing.py
+++ b/tests/examples/developing.py
@@ -4,9 +4,10 @@ import pytest
import tests.testutils.patch as patch
from tests.testutils import cli_integration as cli
from tests.testutils.integration import assert_contains
-from tests.testutils.site import IS_LINUX
+from tests.testutils.site import IS_LINUX, NO_FUSE
pytestmark = pytest.mark.integration
+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__)), '..', '..', 'doc', 'examples', 'developing'