Files
app-ethereum/tests/ragger/setup.cfg
Charles-Edouard de la Vergne cf3c5c3064 Improve ragger tests
- Use defined firmware instead of strings
- Fix compatibility with Python 3.9
- Fix test navigation steps
2024-07-22 15:27:55 +02:00

29 lines
743 B
INI

[tool:pytest]
addopts = --strict-markers
[pylint]
disable = C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0103, # invalid-name
R0801, # duplicate-code
R0903, # too-few-public-methods
R0904, # too-many-public-methods
R0911, # too-many-statements
R0912, # too-many-branches
R0913, # too-many-arguments
R0914, # too-many-locals
W0603, # global-statement
E0401 # import-error
extension-pkg-whitelist=hid
max-line-length = 130
[pycodestyle]
max-line-length = 130
[mypy-hid.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True