30fa6f08a4
* Update base image to Ubuntu 24.10. This uses a python version where j2cli no longer works when installed using pip so use the version from Ubuntu instead which has been patched to work. * Update shellcheck, pylint, pytest, isort, flake8, black and yamllint to the latest versions. This closes #502. * Use a longer expect timeout to fix tests failing when gpg is killed due to this timeout. * Explicitly flush gpg-agent's cached passwords to fix failing tests with latest gnupg. Also clean up after tests to avoid having gpg-agents running after the test (e.g. when running tests directly without docker).
32 lines
564 B
TOML
32 lines
564 B
TOML
[tool.pytest.ini_options]
|
|
cache_dir = "/tmp"
|
|
addopts = "-ra"
|
|
markers = [
|
|
"deprecated", # marks tests for deprecated features (deselect with '-m "not deprecated"')
|
|
]
|
|
|
|
[tool.pylint.design]
|
|
max-args = 14
|
|
max-positional-arguments = 10
|
|
max-locals = 28
|
|
max-attributes = 8
|
|
max-statements = 65
|
|
|
|
[tool.pylint.format]
|
|
max-line-length = 120
|
|
|
|
[tool.pylint."messages control"]
|
|
disable = [
|
|
"redefined-outer-name",
|
|
]
|
|
|
|
[tool.pylint.similarities]
|
|
ignore-imports = "yes"
|
|
min-similarity-lines = 8
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
line_length = 120
|
|
profile = "black"
|