mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 06:14:29 +00:00
20 lines
458 B
TOML
20 lines
458 B
TOML
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["[0-9][0-9][0-9]_test_*.py"]
|
|
asyncio_mode = "auto"
|
|
addopts = "-v --tb=short"
|
|
|
|
[tool.black]
|
|
line-length = 128
|
|
target-version = ["py312"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 128
|
|
|
|
[tool.ruff.lint]
|
|
# E — pycodestyle errors, F — pyflakes, W — warnings, I — isort
|
|
select = ["E", "F", "W", "I"]
|
|
# E501 — line too long (covered by line-length above)
|
|
ignore = ["E501"]
|