pip/setup.cfg

60 lines
1.0 KiB
INI
Raw Normal View History

2017-05-15 11:06:33 +02:00
[isort]
skip =
./build,
2019-07-30 13:26:20 +02:00
.nox,
.tox,
.scratch,
_vendor,
data
2019-07-22 06:45:27 +02:00
multi_line_output = 3
known_third_party =
pip._vendor
known_first_party =
pip
tests
default_section = THIRDPARTY
2017-11-21 08:50:32 +01:00
include_trailing_comma = true
2017-05-15 11:06:33 +02:00
[flake8]
exclude =
./build,
2019-07-30 13:26:20 +02:00
.nox,
.tox,
.scratch,
_vendor,
data
select = E,W,F
2019-02-22 12:07:35 +01:00
ignore = W504
2017-06-14 08:14:47 +02:00
[mypy]
follow_imports = silent
ignore_missing_imports = True
disallow_untyped_defs = True
2019-11-12 19:08:48 +01:00
disallow_any_generics = True
2017-06-14 08:14:47 +02:00
[mypy-pip/_vendor/*]
follow_imports = skip
ignore_errors = True
[tool:pytest]
addopts = --ignore src/pip/_vendor --ignore tests/tests_cache -r aR
2020-05-21 05:57:46 +02:00
markers =
2020-05-21 16:58:43 +02:00
network: tests that need network
2020-05-21 05:57:46 +02:00
incompatible_with_test_venv
incompatible_with_venv
no_auto_tempdir_manager
unit: unit tests
integration: integration tests
bzr: VCS: Bazaar
svn: VCS: Subversion
mercurial: VCS: Mercurial
git: VCS: git
yaml: yaml based tests
2020-05-21 16:58:43 +02:00
fails_on_new_resolver: Does not yet work on the new resolver
2015-10-02 02:26:59 +02:00
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE.txt