summaryrefslogtreecommitdiff
path: root/tests/frontend/buildcheckout.py
diff options
context:
space:
mode:
authorPhillip Smyth <phillip.smyth@codethink.co.uk>2018-08-20 13:58:00 +0100
committerPhillip Smyth <phillip.smyth@codethink.co.uk>2018-08-20 13:58:00 +0100
commit1ac64da2f604b4330e818043d829e8791f1e5dba (patch)
tree4e5eaa84825a84f9af8468accab01786584d6f9d /tests/frontend/buildcheckout.py
parent5a66710733fcb0d3e24da9ba935de56b79bdb4c5 (diff)
downloadbuildstream-no_fuse_flag.tar.gz
Added NO_FUSE flag to tests that need fuseno_fuse_flag
Diffstat (limited to 'tests/frontend/buildcheckout.py')
-rw-r--r--tests/frontend/buildcheckout.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/frontend/buildcheckout.py b/tests/frontend/buildcheckout.py
index d0f52d6a7..cdb27383c 100644
--- a/tests/frontend/buildcheckout.py
+++ b/tests/frontend/buildcheckout.py
@@ -3,12 +3,14 @@ import tarfile
import hashlib
import pytest
from tests.testutils import cli, create_repo, ALL_REPO_KINDS, generate_junction
+from tests.testutils.site import IS_LINUX, NO_FUSE
from buildstream import _yaml
from buildstream._exceptions import ErrorDomain, LoadErrorReason
from . import configure_project
+pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system')
# Project directory
DATA_DIR = os.path.join(
os.path.dirname(os.path.realpath(__file__)),