2023-06-06 14:13:56 +02:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = [
|
|
|
|
"--import-mode=importlib"
|
|
|
|
]
|
|
|
|
markers = [
|
|
|
|
"filename: name of file for fixtures to create",
|
|
|
|
"file_contents: data for fixtures to write to files",
|
|
|
|
"fixture_data: other misc data",
|
|
|
|
]
|
2023-06-07 04:34:41 +02:00
|
|
|
pythonpath = ["src", "test"]
|
2023-06-06 14:13:56 +02:00
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
include_namespace_packages = true
|
2023-06-21 01:03:02 +02:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
combine_as_imports = true
|