From 1ac64da2f604b4330e818043d829e8791f1e5dba Mon Sep 17 00:00:00 2001 From: Phillip Smyth Date: Mon, 20 Aug 2018 13:58:00 +0100 Subject: Added NO_FUSE flag to tests that need fuse --- tests/examples/running-commands.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/examples/running-commands.py') diff --git a/tests/examples/running-commands.py b/tests/examples/running-commands.py index 95f645d77..683981425 100644 --- a/tests/examples/running-commands.py +++ b/tests/examples/running-commands.py @@ -3,10 +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', 'running-commands' ) -- cgit v1.2.1