diff options
Diffstat (limited to 'tests/examples/first-project.py')
-rw-r--r-- | tests/examples/first-project.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examples/first-project.py b/tests/examples/first-project.py index dac181423..33d51552f 100644 --- a/tests/examples/first-project.py +++ b/tests/examples/first-project.py @@ -3,10 +3,10 @@ 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( |