diff options
Diffstat (limited to 'tests/integration/pip.py')
-rw-r--r-- | tests/integration/pip.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/pip.py b/tests/integration/pip.py index 6c6de8bf8..c8c9e454c 100644 --- a/tests/integration/pip.py +++ b/tests/integration/pip.py @@ -6,10 +6,10 @@ from buildstream import _yaml from tests.testutils import cli_integration as cli from tests.testutils.integration import assert_contains - +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__)), |