2014-04-28 13:27:02 +02:00
|
|
|
|
[wheel]
|
2018-07-12 21:16:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
|
# <https://docs.pytest.org/en/latest/customize.html>
|
|
|
|
|
norecursedirs = tests/fixtures
|
2020-05-27 15:58:15 +02:00
|
|
|
|
addopts = --tb=native
|
2018-07-12 21:16:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
|
# <http://pycodestyle.pycqa.org/en/latest/intro.html#configuration>
|
|
|
|
|
|
2020-06-26 17:22:06 +02:00
|
|
|
|
exclude = .git,.idea,__pycache__,build,dist,.pytest_cache,*.egg-info
|
2018-07-12 21:16:16 +02:00
|
|
|
|
|
|
|
|
|
# <http://pycodestyle.pycqa.org/en/latest/intro.html#error-codes>
|
|
|
|
|
# E241 - multiple spaces after ‘,’
|
|
|
|
|
# E501 - line too long
|
|
|
|
|
# W503 - line break before binary operator
|
|
|
|
|
ignore = E241,E501,W503
|