forked from CESNET/FlowTest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.black]
line-length = 120
[tool.pylint.messages_control]
max-line-length = 120
disable = "E0401, R0801"
[tool.pylint.design]
max-attributes=10
max-args=10
[tool.pylint.imports]
known-third-party = ["docker"]
[tool.pytest.ini_options]
pythonpath = [
"tools/ft-profiler/src",
"tools/ft-analyzer",
"tools/ft-generator/tests",
]
markers = [
"dev: development tests",
"dev_docker: development tests using docker",
"validation: probe validation tests",
]
log_cli = "true"
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
addopts = "-s"
[tool.isort]
profile = "black"
known_third_party = ["docker"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]