mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
* Remove --numprocesses from pytest.ini. * Add --numprocesses to PYTEST_ADDOPTS in tox.ini. * complexity--
16 lines
772 B
INI
16 lines
772 B
INI
# This file isn't used while testing packages in tools/_release.sh so any
|
|
# settings we want to also change there must be added to the release script
|
|
# directly.
|
|
[pytest]
|
|
# In general, all warnings are treated as errors. Here are the exceptions:
|
|
# 1- decodestring: https://github.com/rthalley/dnspython/issues/338
|
|
# 2- ignore our own TLS-SNI-01 warning
|
|
# 3- ignore warn for importing abstract classes from collections instead of collections.abc,
|
|
# too much third party dependencies are still relying on this behavior,
|
|
# but it should be corrected to allow Certbot compatiblity with Python >= 3.8
|
|
filterwarnings =
|
|
error
|
|
ignore:decodestring:DeprecationWarning
|
|
ignore:TLS-SNI-01:DeprecationWarning
|
|
ignore:.*collections\.abc:DeprecationWarning
|