diff options
Diffstat (limited to 'tests/examples/autotools.py')
-rw-r--r-- | tests/examples/autotools.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/examples/autotools.py b/tests/examples/autotools.py index c774776fb..2ecdc69f5 100644 --- a/tests/examples/autotools.py +++ b/tests/examples/autotools.py @@ -3,9 +3,11 @@ import pytest 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', 'autotools' |