19 lines
735 B
INI
19 lines
735 B
INI
[tool:pytest]
|
|
markers =
|
|
network: marks tests which require network connection
|
|
|
|
[coverage:run]
|
|
relative_files = True
|
|
|
|
[flake8]
|
|
ignore = W503,W605,E128,E501,E203,E266,E501,E231
|
|
exclude = moto/packages,dist,tests/terraformtests
|
|
|
|
[pylint.MASTER]
|
|
ignore-paths=moto/packages
|
|
|
|
[pylint.'MESSAGES CONTROL']
|
|
disable = W,C,R,E
|
|
# future sensible checks = super-init-not-called, unspecified-encoding, undefined-loop-variable
|
|
enable = anomalous-backslash-in-string, arguments-renamed, dangerous-default-value, deprecated-module, function-redefined, import-self, redefined-builtin, redefined-outer-name, reimported, pointless-statement, super-with-arguments, unused-argument, unused-import, unused-variable, useless-else-on-loop, wildcard-import
|