EOS/pyproject.toml
Bobby Noelte 9f78966c89 Adapt tests to package directory structure.
Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
2024-10-07 08:12:33 +02:00

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", ]