We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5142f3 commit d23b913Copy full SHA for d23b913
.gitignore
@@ -48,7 +48,7 @@ coverage.xml
48
venv/
49
.venv/
50
.python-version
51
-.pytest_cache
+.pytest
52
53
# Translations
54
*.mo
@@ -73,3 +73,6 @@ devbox.lock
73
.devbox
74
75
.uv-cache
76
+
77
+.ruff
78
+.ty
pyproject.toml
@@ -59,6 +59,7 @@ include-package-data = true
59
envlist = ["py310", "py311", "py312"]
60
61
[tool.pytest.ini_options]
62
+cache_dir = ".pytest"
63
testpaths = ["test", "spec"]
64
python_files = "test_*.py *_spec.py"
65
addopts = [
@@ -77,6 +78,7 @@ omit = [
]
79
80
[tool.ruff]
81
+cache-dir = ".ruff"
82
line-length = 130
83
fix = true
84
target-version = "py310"
0 commit comments