2019-04-03 17:17:55 +00:00
|
|
|
[tool:pytest]
|
|
|
|
norecursedirs =
|
|
|
|
.git
|
|
|
|
dist
|
|
|
|
build
|
|
|
|
python_files =
|
|
|
|
test_*.py
|
|
|
|
doctest_plus = disabled
|
|
|
|
addopts = --strict
|
|
|
|
markers =
|
|
|
|
slow
|
|
|
|
remote_data
|
|
|
|
filterwarnings
|
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
ignore = E731,W504
|
|
|
|
max-line-length = 120
|
|
|
|
|
2019-07-24 19:57:18 +00:00
|
|
|
[coverage:run]
|
|
|
|
exclude_lines =
|
|
|
|
pragma: no cover
|
|
|
|
def __repr__
|
|
|
|
if self.debug:
|
|
|
|
if settings.DEBUG
|
|
|
|
raise AssertionError
|
|
|
|
raise NotImplementedError
|
|
|
|
if 0:
|
|
|
|
if __name__ == .__main__.:
|
2019-07-24 20:04:18 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
ignore = E731,W504,F401,F841
|
|
|
|
max-line-length = 120
|