Merge pull request #11928 from bluetech/setup-cfg-cleanups
Some setup.cfg cleanups
This commit is contained in:
commit
304ccb4ad7
|
@ -192,3 +192,17 @@ lines-after-imports = 2
|
||||||
"src/_pytest/_py/**/*.py" = ["B", "PYI"]
|
"src/_pytest/_py/**/*.py" = ["B", "PYI"]
|
||||||
"src/_pytest/_version.py" = ["I001"]
|
"src/_pytest/_version.py" = ["I001"]
|
||||||
"testing/python/approx.py" = ["B015"]
|
"testing/python/approx.py" = ["B015"]
|
||||||
|
|
||||||
|
[tool.mypy]
|
||||||
|
mypy_path = ["src"]
|
||||||
|
check_untyped_defs = true
|
||||||
|
disallow_any_generics = true
|
||||||
|
disallow_untyped_defs = true
|
||||||
|
ignore_missing_imports = true
|
||||||
|
show_error_codes = true
|
||||||
|
strict_equality = true
|
||||||
|
warn_redundant_casts = true
|
||||||
|
warn_return_any = true
|
||||||
|
warn_unreachable = true
|
||||||
|
warn_unused_configs = true
|
||||||
|
no_implicit_reexport = true
|
||||||
|
|
37
setup.cfg
37
setup.cfg
|
@ -33,16 +33,6 @@ project_urls =
|
||||||
Tracker=https://github.com/pytest-dev/pytest/issues
|
Tracker=https://github.com/pytest-dev/pytest/issues
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages =
|
|
||||||
_pytest
|
|
||||||
_pytest._code
|
|
||||||
_pytest._io
|
|
||||||
_pytest._py
|
|
||||||
_pytest.assertion
|
|
||||||
_pytest.config
|
|
||||||
_pytest.mark
|
|
||||||
pytest
|
|
||||||
py_modules = py
|
|
||||||
install_requires =
|
install_requires =
|
||||||
iniconfig
|
iniconfig
|
||||||
packaging
|
packaging
|
||||||
|
@ -56,7 +46,6 @@ package_dir =
|
||||||
setup_requires =
|
setup_requires =
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-scm>=6.0
|
setuptools-scm>=6.0
|
||||||
zip_safe = no
|
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
|
@ -77,29 +66,3 @@ testing =
|
||||||
[options.package_data]
|
[options.package_data]
|
||||||
_pytest = py.typed
|
_pytest = py.typed
|
||||||
pytest = py.typed
|
pytest = py.typed
|
||||||
|
|
||||||
[build_sphinx]
|
|
||||||
source_dir = doc/en/
|
|
||||||
build_dir = doc/build
|
|
||||||
all_files = 1
|
|
||||||
|
|
||||||
[check-manifest]
|
|
||||||
ignore =
|
|
||||||
src/_pytest/_version.py
|
|
||||||
|
|
||||||
[devpi:upload]
|
|
||||||
formats = sdist.tgz,bdist_wheel
|
|
||||||
|
|
||||||
[mypy]
|
|
||||||
mypy_path = src
|
|
||||||
check_untyped_defs = True
|
|
||||||
disallow_any_generics = True
|
|
||||||
disallow_untyped_defs = True
|
|
||||||
ignore_missing_imports = True
|
|
||||||
show_error_codes = True
|
|
||||||
strict_equality = True
|
|
||||||
warn_redundant_casts = True
|
|
||||||
warn_return_any = True
|
|
||||||
warn_unreachable = True
|
|
||||||
warn_unused_configs = True
|
|
||||||
no_implicit_reexport = True
|
|
||||||
|
|
Loading…
Reference in New Issue