mirror of
https://github.com/httpie/cli.git
synced 2024-11-24 08:22:22 +02:00
8f83bfe767
fixes #1039
20 lines
494 B
INI
20 lines
494 B
INI
[wheel]
|
|
|
|
|
|
[tool:pytest]
|
|
# <https://docs.pytest.org/en/latest/customize.html>
|
|
norecursedirs = tests/fixtures
|
|
addopts = --tb=native --doctest-modules
|
|
|
|
|
|
[pycodestyle]
|
|
# <http://pycodestyle.pycqa.org/en/latest/intro.html#configuration>
|
|
|
|
exclude = .git,.idea,__pycache__,build,dist,.pytest_cache,*.egg-info
|
|
|
|
# <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
|