Nothings special about my tmp directory, though now that I've looked at it with fresh eyes I see the problem.
fuse: failed to exec fusermount3: No such file or directory I just ran through the deps in the docs and installed what was needed. I had to `apt-get install fuse3` as well since that has the fusermount3 binary. Tests look good now, thanks for the quick response. On Thursday, September 17, 2020 at 7:09:11 AM UTC-4 [email protected] wrote: > Hello Adammo, > > fuse: failed to exec fusermount3: No such file or directory > ERROR: fuse_session_mount failed > > the temporary directory where S3QL tries to mount the test filesystem to > does not exist. (but it could be created – that's kinda strange) > Do you do something strange/unusual with your TMP directory? > > from Python docs: > > Python searches a standard list of directories to find one which the > calling user can create files in. The list is: > > 1. > > The directory named by the TMPDIR environment variable. > 2. > > The directory named by the TEMP environment variable. > 3. > > The directory named by the TMP environment variable. > 4. > > A platform-specific location: > - > > On Windows, the directories C:\TEMP, C:\TMP, \TEMP, and \TMP, in > that order. > - > > On all other platforms, the directories /tmp, /var/tmp, > and /usr/tmp, in that order. > 5. > > As a last resort, the current working directory. > > > Maybe try to explicitly define TMPDIR before calling the tests: > `TMPDIR=/tmp python3 -m pytest tests/` > or > ``` > mkdir ~/tmp > TMPDIR=~/tmp python3 -m pytest tests/ > ``` > > -- You received this message because you are subscribed to the Google Groups "s3ql" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/s3ql/d0e1247e-1df8-43f4-b0ee-b34d6243664bn%40googlegroups.com.
