[MESSAGES CONTROL] # Disabling messages that we either don't care about for tests or are necessary to break for tests. disable = invalid-name, # we prefer long, descriptive, names for tests missing-docstring, # we generally don't write docstrings for tests wrong-import-position, # pylint does not appear to identify unknown modules as non-standard-library. # flake8 tests for this as well and does treat them properly import-error, # because the examples are not actually in a module, # sys.path is patched to find tests and test utils. # pylint does not recognize this duplicate-code, # tests for similar things tend to be similar redefined-outer-name, # raises false positives with fixtures consider-using-f-string, # Not supported in Python 3.5 [DESIGN] max-args = 10 [FORMAT] max-line-length = 120 [REPORTS] msg-template = {path}:{line}: [{msg_id}({symbol}), {obj}] {msg}