chore(backend): add hypothesis cache directory to gitignore

- Add .hypothesis/ directory to .gitignore to exclude Hypothesis property testing cache files
- Prevents test cache artifacts from being tracked in version control
- Improves repository cleanliness by ignoring generated test data
This commit is contained in:
yyhuni
2026-01-08 11:58:49 +08:00
parent d5f91a236c
commit f5ad8e68e9

1
backend/.gitignore vendored
View File

@@ -7,6 +7,7 @@ __pycache__/
*.egg-info/
dist/
build/
.hypothesis/ # Hypothesis 属性测试缓存
# 虚拟环境
venv/