EOS/pyproject.toml

15 lines
233 B
TOML
Raw Normal View History

2024-10-03 11:01:37 +02:00
[tool.isort]
profile = "black"
[tool.ruff.lint]
ignore = [
"F841", # don't complain about unused variables
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--cov=src"
pythonpath = [ "src", ]
testpaths = [ "tests", ]