We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pytest is crashing with OSError: [Errno 38] Function not implemented when it's run under a squashfuse_ll mountpoint. the exception comes from within
OSError: [Errno 38] Function not implemented
_pytest/assertion/rewrite.py:1102: in try_makedirs os.makedirs(cache_dir, exist_ok=True)
this is because squashfuse_ll returns ENOSYS instead of EROFS for a read-only filesystem, which pytest doesn't know how to handle
d49f1fc (main as of Wed May 8 10:13:30 2024 -0300)
The text was updated successfully, but these errors were encountered:
Fix crashing under squashfuse_ll read-only mounts (#12301)
5af46f3
Fixes #12300
Successfully merging a pull request may close this issue.
a detailed description of the bug or problem you are having
pytest is crashing with
OSError: [Errno 38] Function not implemented
when it's run under a squashfuse_ll mountpoint. the exception comes from withinthis is because squashfuse_ll returns ENOSYS instead of EROFS for a read-only filesystem, which pytest doesn't know how to handle
pytest and operating system versions
d49f1fc (main as of Wed May 8 10:13:30 2024 -0300)
The text was updated successfully, but these errors were encountered: