Skip to content

Commit 6eda40e

Browse files
committed
chore(tooling): configure and update cache directories and switch from mypy to ty (#91)
1 parent 266c181 commit 6eda40e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ coverage.xml
4848
venv/
4949
.venv/
5050
.python-version
51-
.pytest_cache
51+
.pytest
5252

5353
# Translations
5454
*.mo
@@ -73,3 +73,6 @@ devbox.lock
7373
.devbox
7474

7575
.uv-cache
76+
77+
.ruff
78+
.ty

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ include-package-data = true
5959
envlist = ["py310", "py311", "py312"]
6060

6161
[tool.pytest.ini_options]
62+
cache_dir = ".pytest"
6263
testpaths = ["test", "spec"]
6364
python_files = "test_*.py *_spec.py"
6465
addopts = [
@@ -77,6 +78,7 @@ omit = [
7778
]
7879

7980
[tool.ruff]
81+
cache-dir = ".ruff"
8082
line-length = 130
8183
fix = true
8284
target-version = "py310"

0 commit comments

Comments
 (0)