monkey/pyproject.toml

35 lines
946 B
TOML
Raw Permalink Normal View History

2021-04-02 18:40:00 +08:00
[tool.black]
line-length = 100
target-version = ['py37']
2021-04-06 19:54:59 +08:00
[tool.isort]
skip = "monkey/monkey_island/cc/ui"
known_first_party = "common,infection_monkey,monkey_island"
line_length = 100
### for compatibility with black
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip_glob="**/__init__.py"
[tool.pytest.ini_options]
minversion = "6.0"
log_cli = 1
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)s] %(module)s.%(funcName)s.%(lineno)d: %(message)s"
log_cli_date_format = "%H:%M:%S"
addopts = "-v --capture=sys tests/unit_tests tests/integration_tests"
norecursedirs = "node_modules dist"
markers = ["slow: mark test as slow"]
pythonpath = "./monkey"
2021-05-04 00:42:41 +08:00
[tool.vulture]
2022-05-30 15:46:25 +08:00
exclude = ["monkey/monkey_island/cc/ui/", "monkey/tests/", "monkey/monkey_island/docs/"]
2021-05-04 00:42:41 +08:00
paths = ["."]
[tool.mypy]
exclude = 'vulture_allowlist\.py'
show_error_codes = true