moto/setup.cfg
2022-01-14 18:51:49 -01:00

22 lines
556 B
INI

[bdist_wheel]
universal=1
[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
[pylint.MASTER]
ignore-paths=moto/packages
[pylint.'MESSAGES CONTROL']
disable = W,C,R,E
# Check we have any tests with duplicate names (causing them to be skipped)
enable = function-redefined, redefined-builtin, unused-variable, dangerous-default-value, super-with-arguments, W0401, W0402, W0403, W0404, W0406, W0611