diff options
author | Phillip Smyth <phillip.smyth@codethink.co.uk> | 2018-08-20 13:58:00 +0100 |
---|---|---|
committer | Phillip Smyth <phillip.smyth@codethink.co.uk> | 2018-08-20 13:58:00 +0100 |
commit | 1ac64da2f604b4330e818043d829e8791f1e5dba (patch) | |
tree | 4e5eaa84825a84f9af8468accab01786584d6f9d /tests/sandboxes/missing-command.py | |
parent | 5a66710733fcb0d3e24da9ba935de56b79bdb4c5 (diff) | |
download | buildstream-no_fuse_flag.tar.gz |
Added NO_FUSE flag to tests that need fuseno_fuse_flag
Diffstat (limited to 'tests/sandboxes/missing-command.py')
-rw-r--r-- | tests/sandboxes/missing-command.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/sandboxes/missing-command.py b/tests/sandboxes/missing-command.py index 8f210bcec..cc063089d 100644 --- a/tests/sandboxes/missing-command.py +++ b/tests/sandboxes/missing-command.py @@ -4,6 +4,9 @@ import pytest from buildstream._exceptions import ErrorDomain from tests.testutils import cli +from tests.testutils.site import IS_LINUX, NO_FUSE + +pytestmark = pytest.mark.skipif(IS_LINUX and NO_FUSE, reason='FUSE not supported on this system') DATA_DIR = os.path.join( |