mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
7917f1b40c
* reflect Python 3.7 release * fix `pycodestyle` errors * update `pycodestyle` config * move `pytest` and `pycodestyle` config to `setup.cfg` * add `make pycodestyle` * add `make coveralls` * etc.
20 lines
477 B
INI
20 lines
477 B
INI
[wheel]
|
||
universal = 1
|
||
|
||
|
||
[tool:pytest]
|
||
# <https://docs.pytest.org/en/latest/customize.html>
|
||
norecursedirs = tests/fixtures
|
||
|
||
|
||
[pycodestyle]
|
||
# <http://pycodestyle.pycqa.org/en/latest/intro.html#configuration>
|
||
|
||
exclude = .git,.idea,__pycache__,build,dist,.tox,.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
|