mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-04-19 08:55:15 +00:00
15 lines
233 B
TOML
15 lines
233 B
TOML
[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", ]
|
|
|