mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
e1ccc296f2
The pytest-runner package is deprecated and its use is discouraged. See: https://github.com/pytest-dev/pytest-runner/ > pytest-runner depends on deprecated features of setuptools and relies > on features that break security mechanisms in pip. For example > 'setup_requires' and 'tests_require' bypass pip --require-hashes. See > also https://github.com/pypa/setuptools/issues/1684. > > It is recommended that you: > > - Remove 'pytest-runner' from your 'setup_requires', preferably > removing the setup_requires option. > - Remove 'pytest' and any other testing requirements from > 'tests_require', preferably removing the setup_requires option. > - Select a tool to bootstrap and then run tests such as tox Running tests should go through the tox entrypoint.
13 lines
190 B
INI
13 lines
190 B
INI
[flake8]
|
|
extend-ignore = E203, W503
|
|
max-line-length = 88
|
|
|
|
[isort]
|
|
combine_as_imports = True
|
|
include_trailing_comma = True
|
|
line_length = 88
|
|
multi_line_output = 3
|
|
|
|
[tool:pytest]
|
|
addopts = -rs
|