mirror of
https://github.com/httpie/cli.git
synced 2024-11-07 16:34:35 +01:00
529aa78ee1
And rely on it to run tests.
21 lines
558 B
INI
21 lines
558 B
INI
# 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
|
|
[wheel]
|
|
|
|
|
|
[tool:pytest]
|
|
# <https://docs.pytest.org/en/latest/customize.html>
|
|
testpaths = httpie tests
|
|
norecursedirs = tests/fixtures
|
|
addopts = --tb=native --doctest-modules --verbose
|
|
xfail_strict = True
|
|
|
|
|
|
[flake8]
|
|
# <https://flake8.pycqa.org/en/latest/user/error-codes.html>
|
|
# E501 - line too long
|
|
# W503 - line break before binary operator
|
|
ignore = E501,W503
|