python
system_error
ai_generated
partial
权限错误:无法访问 /tmp/pytest-of-user/pytest-123/test_foo0 目录
PermissionError: [Errno 13] Permission denied: '/tmp/pytest-of-user/pytest-123/test_foo0'
ID: python/pytest-tmpdir-permission-error
80%修复率
80%置信度
0证据数
2024-09-11首次发现
版本兼容性
| 版本 | 状态 | 引入 | 弃用 | 备注 |
|---|---|---|---|---|
| 7.4.0 | active | — | — | — |
根因分析
pytest 临时目录权限不足,或已被其他进程占用
English
pytest 临时目录权限不足,或已被其他进程占用
解决方案
-
85% 成功率
pytest --basetemp=/home/user/mytmp
-
70% 成功率
chmod -R 775 /tmp/pytest-of-user
无效尝试
常见但无效的做法:
-
50% 失败
如果权限问题源于系统,删除可能失败或需要 root
-
40% 失败
如果不了解配置方法,可能引入新问题