mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 07:43:20 +01:00
0e556ec3a8
The default value already contains this, but when setting a custom one, it was overridden. In Fedora, we build the package in `.pyproject-builddir` and not ignoring it confuses pytest: _pytest.pathlib.ImportPathMismatchError: ('httpie.__main__', '/builddir/build/BUILD/httpie-2.4.0/.pyproject-builddir/pip-req-build-aedma65c/build/lib/httpie/__main__.py', PosixPath('/builddir/build/BUILD/httpie-2.4.0/.pyproject-builddir/pip-req-build-aedma65c/httpie/__main__.py'))
24 lines
695 B
INI
24 lines
695 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>
|
|
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
|