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/6827470a-d8c5-3884-75c5-1b90ffd0f307%40jagszent.de.

Reply via email to