We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f7e37 commit e446015Copy full SHA for e446015
pyproject.toml
@@ -60,6 +60,7 @@ parallel = true
60
source_pkgs = ["ansible_creator"]
61
62
[tool.mypy]
63
+cache_dir = "./.cache/.mypy"
64
exclude = 'tests/fixtures'
65
files = ["src", "tests"]
66
strict = true
@@ -313,13 +314,15 @@ fail-on = [
313
314
315
[tool.pytest.ini_options]
316
addopts = "-ra --showlocals --durations=10"
317
+cache_dir = "./.cache/.pytest"
318
norecursedirs = "tests/fixtures"
319
testpaths = "tests"
320
tmp_path_retention_policy = "failed"
321
verbosity_assertions = 2
322
323
[tool.ruff]
324
builtins = ["__"]
325
+cache-dir = "./.cache/.ruff"
326
exclude = ["tests/fixtures"]
327
fix = true
328
line-length = 100
0 commit comments