1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-24 19:53:55 +02:00
Files
httpie-cli/setup.cfg
T

21 lines
558 B
INI
Raw Normal View History

2021-02-24 14:56:57 +01:00
# Please keep all characters in this file in ASCII
# distutils uses system's locale to interpret it and not everybody
# uses UTF-8. See https://github.com/httpie/httpie/issues/1039
# for an example
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>
2021-09-20 17:36:03 +02:00
testpaths = httpie tests
norecursedirs = tests/fixtures
addopts = --tb=native --doctest-modules --verbose
xfail_strict = True
2018-07-12 21:16:16 +02:00
[flake8]
# <https://flake8.pycqa.org/en/latest/user/error-codes.html>
# E501 - line too long
# W503 - line break before binary operator
ignore = E501,W503