Lines Matching +full:python3 +full:- +full:pytest
1 #!/usr/bin/env python3
3 import pytest
44 pytest.fail('file system process terminated prematurely')
47 pytest.fail("mountpoint failed to come up")
53 cmd = [ 'umount', '-f', mnt_dir ]
56 '-z', '-u', mnt_dir]
77 '-z', '-u', mnt_dir ]
90 pytest.fail('file system process terminated with code %s' % (code,))
93 pytest.fail('mount process did not terminate')
107 time.sleep(end - now)
111 '''Return a pytest.marker that indicates FUSE availability
114 a `pytest.mark.skip` object with more details. If FUSE is
115 supported, return `pytest.mark.uses_fuse()`.
118 skip = lambda x: pytest.mark.skip(reason=x)
121 return pytest.mark.uses_fuse()
134 return pytest.mark.uses_fuse()
147 return pytest.mark.uses_fuse()
158 base_cmdline = [ 'valgrind', '-q', '--' ]