Lines Matching +full:python3 +full:- +full:pytest
5 -----
17 send responses back. libfuse offers two APIs: a "high-level",
18 synchronous API, and a "low-level" asynchronous API. In both cases,
20 callbacks. When using the high-level API, the callbacks may work with
22 finishes when the callback function returns. When using the low-level
28 ------------------
35 beyond addressing high-impact issues. When reporting bugs, please
42 -------------------
45 * BSD (mostly/best-effort)
46 * For OS-X, please use [OSXFUSE](https://osxfuse.github.io/)
50 ------------
54 [Ninja](https://ninja-build.org). After downloading the tarball and `.sig` file, verify
55 it using [signify](https://www.openbsd.org/papers/bsdcan-signify.html):
57 signify -V -m fuse-X.Y.Z.tar.gz -p fuse-X.Y.pub
59 The `fuse-X.Y.pub` file contains the signing key and needs to be obtained from a
67 $ tar xzf fuse-X.Y.Z.tar.gz; cd fuse-X.Y.Z
76 $ meson configure -D disable-mtab=true # set an option
81 $ sudo python3 -m pytest test/
84 Running the tests requires the [py.test](http://www.pytest.org/)
91 $ python3 -m pytest test/
94 ---------------------
102 - The user can only mount on a mountpoint for which they have write
105 - The mountpoint must not be a sticky directory which isn't owned by
108 - No other user (including root) can access the contents of the
119 entry will be re-used for subsequent accesses as long as the inode of
120 the accessed entry is present in the kernel cache - even if the
137 ------------------------------
145 mostly contained in the files `include/fuse.h` (for the high-level
146 API) and `include/fuse_lowlevel.h` (for the low-level API). An
152 ------------
154 If you need help, please ask on the <fuse-devel@lists.sourceforge.net>
156 https://lists.sourceforge.net/lists/listinfo/fuse-devel).