You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openpgp-card-app/tests/setup.cfg

25 lines
576 B
INI

[tool:pytest]
addopts = --strict-markers --strict-config
console_output_style = count
# log_cli = True
[pylint]
disable = C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0103, # invalid-name
R0801, # duplicate-code
R0904, # too-many-public-methods
R0913 # too-many-arguments
max-line-length=120
extension-pkg-whitelist=hid
[pycodestyle]
max-line-length = 100
[mypy-hid.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True