Code Rewrite to support multi instances

This commit is contained in:
Benjamin Harder
2024-08-20 23:28:20 +02:00
parent 2041337914
commit 1663703186
80 changed files with 4560 additions and 2954 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[tool.pylint]
ignore = ".venv"
ignore-patterns = ["__pycache__", ".pytest_cache"]
disable = [
"logging-fstring-interpolation", # W1203
"f-string-without-interpolation", # W1309
"broad-exception-caught", # W0718
"missing-module-docstring", # C0114
"missing-class-docstring", # C0115
"missing-function-docstring", # C0116
"line-too-long", # C0301
]
[tool.pytest.ini_options]
# log_cli = true # Uncomment this if you need it
addopts = "-q --tb=short -s"
log_cli_level = "INFO"
log_cli_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
testpaths = [
"tests"
]